Skip to content

Commit

Permalink
fix(frontend): 授权规则组件props修复 TencentBlueKing#6224
Browse files Browse the repository at this point in the history
# Reviewed, transaction id: 22469
JustaCattt authored and hLinx committed Oct 31, 2024
1 parent bf4cbe9 commit 558919b
Showing 4 changed files with 11 additions and 589 deletions.
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@
v-else
keypath="已添加n个规则"
tag="span">
<span style="font-weight: 700; padding: 0 5px">{{ modelValue.length }}</span>
<span style="padding: 0 5px; font-weight: 700">{{ modelValue.length }}</span>
</I18nT>
</BkButton>
<div
@@ -40,12 +40,14 @@
<PermissionRule
v-model="modelValue"
v-model:is-show="isShow"
:cluster-id="clusterId"
db-type="mysql" />
:account-type="AccountTypes.MYSQL"
:cluster-id="clusterId" />
</template>
<script setup lang="ts">
import { useI18n } from 'vue-i18n';

import { AccountTypes } from '@common/const';

import PermissionRule from '@views/db-manage/common/add-permission-rule-dialog/Index.vue';

interface Props {
Loading

0 comments on commit 558919b

Please sign in to comment.