mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fixed delete dialog colors
This commit is contained in:
parent
edd1f49e57
commit
0f51a9794e
16 changed files with 77 additions and 57 deletions
|
|
@ -16,8 +16,8 @@ class AlbumPreviewPage extends HookConsumerWidget {
|
|||
final assets = useState<List<AssetEntity>>([]);
|
||||
|
||||
_getAssetsInAlbum() async {
|
||||
assets.value =
|
||||
await album.getAssetListRange(start: 0, end: album.assetCount);
|
||||
assets.value = await album.getAssetListRange(
|
||||
start: 0, end: await album.assetCountAsync);
|
||||
}
|
||||
|
||||
useEffect(
|
||||
|
|
@ -34,7 +34,7 @@ class AlbumPreviewPage extends HookConsumerWidget {
|
|||
title: Column(
|
||||
children: [
|
||||
Text(
|
||||
"${album.name} (${album.assetCount})",
|
||||
"${album.name} (${album.assetCountAsync})",
|
||||
style: const TextStyle(fontSize: 14, fontWeight: FontWeight.bold),
|
||||
),
|
||||
Padding(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue