From 4767b5f050a6045cfc1d5edcf0ab3c133a292d7d Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 7 Dec 2022 10:43:02 +0100 Subject: [PATCH] add props transactionLinkId --- .../src/components/Transactions/TransactionReceive.vue | 9 +++++---- frontend/src/components/Transactions/TransactionSend.vue | 9 +++++---- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/frontend/src/components/Transactions/TransactionReceive.vue b/frontend/src/components/Transactions/TransactionReceive.vue index a4d6861ed..9c4784e46 100644 --- a/frontend/src/components/Transactions/TransactionReceive.vue +++ b/frontend/src/components/Transactions/TransactionReceive.vue @@ -72,14 +72,15 @@ export default { typeId: { type: String, }, - linkId: { - type: Number, - required: false, - }, previousBookedBalance: { type: String, required: true, }, + transactionLinkId: { + type: Number, + required: false, + default: null, + }, }, data() { return { diff --git a/frontend/src/components/Transactions/TransactionSend.vue b/frontend/src/components/Transactions/TransactionSend.vue index e725b2b4e..3f1d2351b 100644 --- a/frontend/src/components/Transactions/TransactionSend.vue +++ b/frontend/src/components/Transactions/TransactionSend.vue @@ -73,14 +73,15 @@ export default { type: String, required: true, }, - linkId: { - type: Number, - required: false, - }, previousBookedBalance: { type: String, required: true, }, + transactionLinkId: { + type: Number, + required: false, + default: null, + }, }, data() { return {