From 91768dcb936f2c057331e00bc528595f925698ab Mon Sep 17 00:00:00 2001 From: rix1337 <> Date: Sat, 29 Jul 2023 16:04:33 +0200 Subject: [PATCH] ToDo --- .github/Changelog.md | 7 ++++++- .../web_interface/vuejs_frontend/src/components/Head.vue | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/Changelog.md b/.github/Changelog.md index a1f2df1..4ea6f49 100644 --- a/.github/Changelog.md +++ b/.github/Changelog.md @@ -5,4 +5,9 @@ --- ### Changelog BudgeTeer: -- Save balances, budgets and open transactions on lock \ No newline at end of file +- Save balances, budgets and open transactions on lock +- Check budget entry for validity +- ToDo: + - Move balances to header + - Show save button on modification of balances, budgets and open transactions + - Check budget validity calculating remaining budget for the current month in the header \ No newline at end of file diff --git a/budgeteer/web_interface/vuejs_frontend/src/components/Head.vue b/budgeteer/web_interface/vuejs_frontend/src/components/Head.vue index f13c73e..100c010 100644 --- a/budgeteer/web_interface/vuejs_frontend/src/components/Head.vue +++ b/budgeteer/web_interface/vuejs_frontend/src/components/Head.vue @@ -82,7 +82,7 @@ const current_budget = computed({ } } - return (parseFloat(balances_total_amount + transactions_total_amount + current_budget_total_amount).toFixed(2)) + return (balances_total_amount + transactions_total_amount + current_budget_total_amount).toFixed(2) } })