From c35a091b66a3ea0a9adbac440edf0caf387b2161 Mon Sep 17 00:00:00 2001 From: Yuikill <105910874+Yuikill@users.noreply.github.com> Date: Wed, 18 Sep 2024 16:47:38 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=84=9A=E6=9C=AC=E7=9A=84=E7=89=88?= =?UTF-8?q?=E6=9C=AC=E5=AF=B9=E6=AF=94=E5=87=BA=E7=8E=B0=E7=A9=BA=E7=99=BD?= =?UTF-8?q?=20(#3530)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bcs-services/bcs-bscp/ui/src/components/diff/text.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/bcs-services/bcs-bscp/ui/src/components/diff/text.vue b/bcs-services/bcs-bscp/ui/src/components/diff/text.vue index 7c197bf36b..2a56a42969 100644 --- a/bcs-services/bcs-bscp/ui/src/components/diff/text.vue +++ b/bcs-services/bcs-bscp/ui/src/components/diff/text.vue @@ -62,15 +62,17 @@ currentLanguage?: string; currentVariables?: IVariableEditParams[]; currentPermission?: string; - isSecret: boolean; - secretVisible: boolean; - isCipherShow: boolean; + isSecret?: boolean; + secretVisible?: boolean; + isCipherShow?: boolean; }>(), { baseLanguage: '', currentVariables: () => [], currentLanguage: '', baseVariables: () => [], + isSecret: false, + secretVisible: true, }, );