Bugfixes
This commit is contained in:
@ -36,7 +36,7 @@ export default defineComponent({
|
||||
return;
|
||||
|
||||
const api = useAPI();
|
||||
api.DELETE("/api/v1/budget/" + currentBudgetID);
|
||||
api.DELETE("/budget/" + currentBudgetID);
|
||||
|
||||
const budgetStore = useSessionStore();
|
||||
budgetStore.Budgets.delete(currentBudgetID);
|
||||
@ -45,7 +45,7 @@ export default defineComponent({
|
||||
clearBudget() {
|
||||
const currentBudgetID = useBudgetsStore().CurrentBudgetID;
|
||||
const api = useAPI();
|
||||
api.POST("/api/v1/budget/" + currentBudgetID + "/settings/clear", null)
|
||||
api.POST("/budget/" + currentBudgetID + "/settings/clear", null)
|
||||
},
|
||||
cleanNegative() {
|
||||
// <a href="/budget/{{.Budget.ID}}/settings/clean-negative">Fix all historic negative category-balances</a>
|
||||
|
Reference in New Issue
Block a user