From 4bf5ada94f5378903365a737d488d4928c8a7566 Mon Sep 17 00:00:00 2001 From: Matthew Wilson <22526682+automationator@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:25:40 -0400 Subject: [PATCH] Use MoneyInput for account starting balance field Replace the plain number input with the MoneyInput component so the starting balance field has auto-decimal formatting and a tappable +/- sign toggle, matching the transaction amount field UX. Co-Authored-By: Claude Opus 4.6 (1M context) --- frontend/src/components/accounts/AccountForm.vue | 15 +++++++++------ frontend/src/components/common/MoneyInput.vue | 4 ++++ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/accounts/AccountForm.vue b/frontend/src/components/accounts/AccountForm.vue index b27bd0e..e95b0e6 100644 --- a/frontend/src/components/accounts/AccountForm.vue +++ b/frontend/src/components/accounts/AccountForm.vue @@ -1,6 +1,7 @@