fix(web): multi-select in ascending asset order (#19461)

This commit is contained in:
Daimolean 2025-07-25 05:37:44 +08:00 committed by GitHub
parent e34f46fa0d
commit a36840d7cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 4 deletions

View file

@ -540,4 +540,8 @@ export class TimelineManager {
isMismatched(this.#options.isTrashed, asset.isTrashed)
);
}
getAssetOrder() {
return this.#options.order ?? AssetOrder.Desc;
}
}