get apollo result in CollapseLinkList

This commit is contained in:
ogerly 2022-03-15 11:40:46 +01:00
parent cb27b7aebe
commit 7cc96f0883

View File

@ -3,6 +3,7 @@
<div class="d-flex"> <div class="d-flex">
<div class="text-center pb-3 gradido-max-width"> <div class="text-center pb-3 gradido-max-width">
<b>{{ $t('links-list.header') }}</b> <b>{{ $t('links-list.header') }}</b>
{{ transactionLinks }}
</div> </div>
</div> </div>
</div> </div>
@ -10,5 +11,8 @@
<script> <script>
export default { export default {
name: 'CollapseLinksList', name: 'CollapseLinksList',
props: {
transactionLinks: { type: Object, required: true },
},
} }
</script> </script>