diff --git a/MoneyMap/Pages/Receipts.cshtml b/MoneyMap/Pages/Receipts.cshtml index 154b434..2a4940e 100644 --- a/MoneyMap/Pages/Receipts.cshtml +++ b/MoneyMap/Pages/Receipts.cshtml @@ -317,7 +317,7 @@ Rows highlighted in green have matching amounts. -
+
@@ -330,10 +330,16 @@ + @{ + var firstMatchId = matches.FirstOrDefault(t => t.IsAmountMatch)?.Id; + } @foreach (var txn in matches) { var rowClass = txn.IsAmountMatch ? "table-success" : ""; - @@ -352,6 +358,25 @@
+ @if (firstMatchId.HasValue) + { + + } } else {