diff --git a/web/components/Registration.ce.vue b/web/components/Registration.ce.vue index 982569357..ac832d194 100644 --- a/web/components/Registration.ce.vue +++ b/web/components/Registration.ce.vue @@ -147,13 +147,13 @@ const items = computed((): RegistrationItemProps[] => { componentProps: { t: t }, }] : []), // filter out renew action and only display other key actions - ...(!keyActions.value?.filter(action => !['renew'].includes(action.name)) ? [{ + ...(keyActions.value?.filter(action => !['renew'].includes(action.name)) ? [{ label: t('License key actions'), component: KeyActions, componentProps: { filterOut: ['renew'], t, - }, + }, }] : []), ];