Fix: Passt das Verhalten der InputFelder an, dass sich diese wirklich verändern

This commit is contained in:
2026-01-01 23:19:49 +01:00
parent a937d34df2
commit 58cbd2a462
7 changed files with 85 additions and 62 deletions

View File

@@ -36,6 +36,7 @@ class _RecentTransactionsListState extends State<RecentTransactionsList> {
final Future<List<Transaction>> recentTransactions = _transactionRepository
.findBy(
account: _accountController.selected.value,
dateTo: DateTime.now(),
limit: 5,
orderBy: 'dateDesc',
);