mirror of
https://github.com/immich-app/immich
synced 2025-11-07 17:27:20 +00:00
fix: repeat timeline migration for first time user (#21794)
This commit is contained in:
parent
56e5236a39
commit
2d2673c114
4 changed files with 63 additions and 52 deletions
|
|
@ -104,7 +104,6 @@ class SyncStatusAndActions extends HookConsumerWidget {
|
|||
padding: const EdgeInsets.only(top: 16, bottom: 32),
|
||||
child: ListView(
|
||||
children: [
|
||||
_SectionHeaderText(text: "assets".t(context: context)),
|
||||
const _SyncStatsCounts(),
|
||||
const Divider(height: 1, indent: 16, endIndent: 16),
|
||||
const SizedBox(height: 24),
|
||||
|
|
@ -270,7 +269,10 @@ class _SyncStatsCounts extends ConsumerWidget {
|
|||
final localHashedCount = snapshot.data![4]! as int;
|
||||
|
||||
return Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
_SectionHeaderText(text: "assets".t(context: context)),
|
||||
Padding(
|
||||
padding: const EdgeInsets.fromLTRB(16, 8, 16, 16),
|
||||
child: Flex(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue