diff --git a/web/src/components/Autocomplete.vue b/web/src/components/Autocomplete.vue index 3ba1046..e305b67 100644 --- a/web/src/components/Autocomplete.vue +++ b/web/src/components/Autocomplete.vue @@ -48,7 +48,6 @@ function load(text: String) { }); }; function keypress(e: KeyboardEvent) { - console.log(e.key); if (e.key == "Enter") { const selected = Suggestions.value[0]; selectElement(selected); diff --git a/web/src/components/TransactionInputRow.vue b/web/src/components/TransactionInputRow.vue index d493689..b7ddec4 100644 --- a/web/src/components/TransactionInputRow.vue +++ b/web/src/components/TransactionInputRow.vue @@ -15,8 +15,8 @@ const Memo = ref(""); const Amount = ref("0"); const payload = computed(() => JSON.stringify({ - budget_id: props.budgetid, - account_id: props.accountid, + budgetId: props.budgetid, + accountId: props.accountid, date: TransactionDate.value, payee: Payee.value, category: Category.value,