From b31bffd5e86ac633deaabfeecae4b04f221df304 Mon Sep 17 00:00:00 2001 From: Bryce Date: Sun, 20 Oct 2024 20:54:42 -0700 Subject: [PATCH] Bug fix --- src/cljc/auto_ap/ledger/reports.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cljc/auto_ap/ledger/reports.cljc b/src/cljc/auto_ap/ledger/reports.cljc index 3a0ea348..eccde6c0 100644 --- a/src/cljc/auto_ap/ledger/reports.cljc +++ b/src/cljc/auto_ap/ledger/reports.cljc @@ -275,7 +275,7 @@ (map (fn [account] (if (types (best-category account)) - (update account :amount -) + (update account :amount #(- (or % 0.0))) account)) accounts))))