We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63b0e3a commit 6a040b9Copy full SHA for 6a040b9
1 file changed
adminforth/spa/src/components/ThreeDotsMenu.vue
@@ -46,8 +46,9 @@
46
<li v-for="action in customActions" :key="action.id">
47
<div class="wrapper">
48
<component
49
+ v-if="action.customComponent"
50
:is="(action.customComponent && getCustomComponent(formatComponent(action.customComponent))) || CallActionWrapper"
- :meta="formatComponent(action.customComponent as AdminForthComponentDeclarationFull).meta || {}"
51
+ :meta="formatComponent(action.customComponent).meta"
52
@callAction="(payload? : Object) => handleActionClick(action, payload)"
53
>
54
<a @click.prevent class="block px-4 py-2 hover:text-lightThreeDotsMenuBodyTextHover hover:bg-lightThreeDotsMenuBodyBackgroundHover dark:hover:bg-darkThreeDotsMenuBodyBackgroundHover dark:hover:text-darkThreeDotsMenuBodyTextHover">
0 commit comments