From 70fd31afb63fa776d1665346902211488cfc905d Mon Sep 17 00:00:00 2001 From: Zack Spear Date: Thu, 28 Sep 2023 15:40:06 -0700 Subject: [PATCH] fix(web): Registration key actions --- web/components/Registration.ce.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, - }, + }, }] : []), ];