create-categories #79

Open
jacob1123 wants to merge 31 commits from create-categories into master
Showing only changes of commit 77de2a833e - Show all commits

View File

@ -28,7 +28,6 @@ const GroupsForMonth = computed(() => {
return [...groupsForMonth(selected.value.Year, selected.value.Month)];
});
const previous = computed(() => ({
Year: new Date(selected.value.Year, selected.value.Month - 1, 1).getFullYear(),
Month: new Date(selected.value.Year, selected.value.Month - 1, 1).getMonth(),
@ -203,7 +202,7 @@ const budgeted = computed(() => accountStore.GetBudgeted(selected.value.Year, se
v-model="category.Assigned"
type="number"
class="hidden sm:block mx-2 text-right"
@input="(evt) => assignedChanged(evt, category)"
@input="(evt : Event) => assignedChanged(evt, category)"
/>
<Currency
:value="category.Activity"