mirror of
https://github.com/immich-app/immich
synced 2025-10-17 18:19:27 +00:00
ci: browser compatibility linting (#19132)
This commit is contained in:
parent
de756d9497
commit
e2dfbd66c3
11 changed files with 140 additions and 2 deletions
|
|
@ -470,7 +470,11 @@ export class TimelineManager {
|
|||
},
|
||||
{ order: this.#options.order ?? AssetOrder.Desc },
|
||||
);
|
||||
return unprocessedIds.values().map((id) => lookup.get(id)!);
|
||||
const result: TimelineAsset[] = [];
|
||||
for (const id of unprocessedIds.values()) {
|
||||
result.push(lookup.get(id)!);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
removeAssets(ids: string[]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue