Compare commits

..

1 Commits

Author SHA1 Message Date
Yaros 172061f128 fix(mobile): trash description cut off 2025-10-05 11:27:54 +02:00
2 changed files with 2 additions and 5 deletions
@@ -300,7 +300,7 @@ class _EditAlbumDialogState extends ConsumerState<_EditAlbumDialog> {
await ref await ref
.read(remoteAlbumProvider.notifier) .read(remoteAlbumProvider.notifier)
.updateAlbum(widget.album.id, name: newTitle, description: newDescription); .updateAlbum(widget.album.id, name: newTitle, description: newDescription.isEmpty ? null : newDescription);
if (mounted) { if (mounted) {
Navigator.of( Navigator.of(
@@ -44,10 +44,7 @@ class DriftTrashPage extends StatelessWidget {
return SliverPadding( return SliverPadding(
padding: const EdgeInsets.all(16.0), padding: const EdgeInsets.all(16.0),
sliver: SliverToBoxAdapter( sliver: SliverToBoxAdapter(
child: SizedBox( child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}),
height: 24.0,
child: const Text("trash_page_info").t(context: context, args: {"days": "$trashDays"}),
),
), ),
); );
}, },