From 011c2a3a266a7f3fc5bf8d1409ef4d918b87a14e Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Tue, 11 Jan 2022 15:56:04 +0000 Subject: [PATCH] chore: fix profile toggle view --- components.d.ts | 2 ++ src/views/Home.vue | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components.d.ts b/components.d.ts index a7c563c..9be60d6 100644 --- a/components.d.ts +++ b/components.d.ts @@ -4,10 +4,12 @@ declare module 'vue' { export interface GlobalComponents { + CarbonDicomOverlay: typeof import('~icons/carbon/dicom-overlay')['default'] CarbonEdit: typeof import('~icons/carbon/edit')['default'] CarbonErase: typeof import('~icons/carbon/erase')['default'] CarbonHome: typeof import('~icons/carbon/home')['default'] CarbonLanguage: typeof import('~icons/carbon/language')['default'] + CarbonWarning: typeof import('~icons/carbon/warning')['default'] Footer: typeof import('./src/components/Footer.vue')['default'] MenuLocales: typeof import('./src/components/MenuLocales.vue')['default'] MessageBox: typeof import('./src/components/MessageBox.vue')['default'] diff --git a/src/views/Home.vue b/src/views/Home.vue index 40da797..215ec94 100644 --- a/src/views/Home.vue +++ b/src/views/Home.vue @@ -314,7 +314,7 @@ const refresh = () => { const onItem = (data: { root: string, src: string, _itm: any, idx: number }) => { switch(data.root) { case 'info': - const source = useState().datalang.value[i18n.locale.value] ? 'corelang': 'core' + const source = useState().datalang.value[i18n.locale.value] && useState().datalang.value[i18n.locale.value].corelang && useState().datalang.value[i18n.locale.value].corelang[data.src] ? 'corelang': 'core' if (source === 'corelang') { if (data.idx > -1) { useState().datalang.value[i18n.locale.value][source][data.src][data.idx].auth.show = !useState().datalang.value[i18n.locale.value][source][data.src][data.idx].auth.show