Fix number-input not returning numbers

This commit is contained in:
2022-04-08 18:23:29 +00:00
parent 249aa534c8
commit 3ca7bfeade
3 changed files with 18 additions and 8 deletions

View File

@ -61,7 +61,7 @@ export const useAccountStore = defineStore("budget/account", {
return (category: Category): number => {
return (
category.AvailableLastMonth +
Number(category.Assigned) +
category.Assigned +
category.Activity
);
};