Skip to content

Commit

Permalink
fix: 脚本的版本对比出现空白 (#3530)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuikill committed Sep 18, 2024
1 parent 7f4a1f3 commit c35a091
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions bcs-services/bcs-bscp/ui/src/components/diff/text.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
);
Expand Down

0 comments on commit c35a091

Please sign in to comment.