Skip to content
This repository has been archived by the owner on Jun 30, 2024. It is now read-only.

Commit

Permalink
ToDo
Browse files Browse the repository at this point in the history
  • Loading branch information
rix1337 committed Jul 29, 2023
1 parent a173055 commit 91768dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,9 @@
---

### Changelog BudgeTeer:
- Save balances, budgets and open transactions on lock
- 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
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
})
Expand Down

0 comments on commit 91768dc

Please sign in to comment.