From 158ae139f0f569fb5f98672821bab6f301b7152d Mon Sep 17 00:00:00 2001 From: AJ Date: Sun, 12 Oct 2025 11:04:05 -0400 Subject: [PATCH] Fix category filter for uncategorized transactions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Previously, selecting "(blank)" from the category dropdown would submit an empty string value, causing no transactions to appear. The backend expects the literal string "(blank)" to filter for uncategorized items. Updated the dropdown to submit "(blank)" as the value when the category is empty, matching the backend's filter logic in Transactions.cshtml.cs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- MoneyMap/Pages/Transactions.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MoneyMap/Pages/Transactions.cshtml b/MoneyMap/Pages/Transactions.cshtml index 88d510b..4aed733 100644 --- a/MoneyMap/Pages/Transactions.cshtml +++ b/MoneyMap/Pages/Transactions.cshtml @@ -19,7 +19,7 @@ @foreach (var cat in Model.AvailableCategories) { - + }