diff --git a/lib/ui/invoice/invoice_list_item.dart b/lib/ui/invoice/invoice_list_item.dart index 874d165d5..df027b397 100644 --- a/lib/ui/invoice/invoice_list_item.dart +++ b/lib/ui/invoice/invoice_list_item.dart @@ -71,7 +71,9 @@ class InvoiceListItem extends StatelessWidget { children: [ Expanded( child: filterMatch == null - ? Text(invoice.invoiceNumber) + ? Text(invoice.invoiceNumber + + ' • ' + + formatDate(invoice.invoiceDate, context)) : Text( filterMatch, maxLines: 3, diff --git a/lib/ui/payment/payment_list_item.dart b/lib/ui/payment/payment_list_item.dart index a478728d7..8b71121b3 100644 --- a/lib/ui/payment/payment_list_item.dart +++ b/lib/ui/payment/payment_list_item.dart @@ -39,7 +39,10 @@ class PaymentListItem extends StatelessWidget { final filterMatch = filter != null && filter.isNotEmpty ? payment.matchesFilterValue(filter) : null; - final subtitle = filterMatch ?? invoice.invoiceNumber; + final subtitle = filterMatch ?? + invoice.invoiceNumber + + ' • ' + + formatDate(invoice.invoiceDate, context); return DismissibleEntity( user: user,