From b90aa383f297498c311db581fbc30d48ff5d6d1a Mon Sep 17 00:00:00 2001 From: dataeaseShu Date: Tue, 29 Oct 2024 15:18:48 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E7=BC=96=E8=AF=91=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- core/core-frontend/src/views/system/common/InfoTemplate.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/core-frontend/src/views/system/common/InfoTemplate.vue b/core/core-frontend/src/views/system/common/InfoTemplate.vue index dd6752839f..3543a9c8d1 100644 --- a/core/core-frontend/src/views/system/common/InfoTemplate.vue +++ b/core/core-frontend/src/views/system/common/InfoTemplate.vue @@ -115,7 +115,7 @@ const props = defineProps({ }, settingTitle: { type: String, - default: t('system.basic_settings') + default: '' }, hideHead: { type: Boolean, @@ -136,7 +136,7 @@ const props = defineProps({ }) const executeTime = ref(t('system.and_0_seconds')) const curTitle = computed(() => { - return props.settingTitle + return props.settingTitle || t('system.basic_settings') }) const copyVal = async val => { try {