From f1718537b25e965b9985b4b3081ade811b2d5bf1 Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 15 Mar 2022 17:13:28 +0100 Subject: [PATCH] ad function updateListTransactionLinks on component --- .../DecayInformations/CollapseLinksList.vue | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/frontend/src/components/DecayInformations/CollapseLinksList.vue b/frontend/src/components/DecayInformations/CollapseLinksList.vue index d5663f16b..275615de1 100644 --- a/frontend/src/components/DecayInformations/CollapseLinksList.vue +++ b/frontend/src/components/DecayInformations/CollapseLinksList.vue @@ -10,7 +10,12 @@ Abgelaufen - + @@ -26,5 +31,10 @@ export default { props: { transactionLinks: { type: Array, required: true }, }, + methods: { + updateListTransactionLinks() { + this.$emit('update-list-transaction-links') + }, + }, }