Fix changed json contract
This commit is contained in:
parent
b5e3e7bea0
commit
b4aec52d4f
@ -48,7 +48,6 @@ function load(text: String) {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
function keypress(e: KeyboardEvent) {
|
function keypress(e: KeyboardEvent) {
|
||||||
console.log(e.key);
|
|
||||||
if (e.key == "Enter") {
|
if (e.key == "Enter") {
|
||||||
const selected = Suggestions.value[0];
|
const selected = Suggestions.value[0];
|
||||||
selectElement(selected);
|
selectElement(selected);
|
||||||
|
@ -15,8 +15,8 @@ const Memo = ref("");
|
|||||||
const Amount = ref("0");
|
const Amount = ref("0");
|
||||||
|
|
||||||
const payload = computed(() => JSON.stringify({
|
const payload = computed(() => JSON.stringify({
|
||||||
budget_id: props.budgetid,
|
budgetId: props.budgetid,
|
||||||
account_id: props.accountid,
|
accountId: props.accountid,
|
||||||
date: TransactionDate.value,
|
date: TransactionDate.value,
|
||||||
payee: Payee.value,
|
payee: Payee.value,
|
||||||
category: Category.value,
|
category: Category.value,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user