diff --git a/src/components/navigation/EssentialExpansionLink.vue b/src/components/navigation/EssentialExpansionLink.vue index a8d150a..3dcc1d4 100644 --- a/src/components/navigation/EssentialExpansionLink.vue +++ b/src/components/navigation/EssentialExpansionLink.vue @@ -45,7 +45,7 @@ export default defineComponent({ }, setup(props, { emit }) { function isGranted(val: FG_Plugin.MenuLink) { - return computed(() => hasPermissions(val.permissions || [])); + return computed(() => hasPermissions(val.permissions || [])).value; } function getTitle(entry: FG_Plugin.MenuLink) { return computed(() => (typeof entry.title === 'function' ? entry.title() : entry.title)).value;