From d843530e393569a2347756c9bae43f1d8a1772b2 Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 15 Mar 2022 11:46:56 +0100 Subject: [PATCH] change props transactionLinks type from object to Array --- frontend/src/components/DecayInformations/CollapseLinksList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/DecayInformations/CollapseLinksList.vue b/frontend/src/components/DecayInformations/CollapseLinksList.vue index 6006e6a10..3be2f14f5 100644 --- a/frontend/src/components/DecayInformations/CollapseLinksList.vue +++ b/frontend/src/components/DecayInformations/CollapseLinksList.vue @@ -12,7 +12,7 @@ export default { name: 'CollapseLinksList', props: { - transactionLinks: { type: Object, required: true }, + transactionLinks: { type: Array, required: true }, }, }