Skip to content

Commit

Permalink
feat(frontend): mysql、spider库表校验规则调整 TencentBlueKing#6595
Browse files Browse the repository at this point in the history
  • Loading branch information
jinquantianxia committed Sep 10, 2024
1 parent 753a3f6 commit 92ed204
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<div
v-for="name in previewDataList"
:key="name"
v-overflow-tips
class="name-item">
{{ name }}
</div>
Expand Down Expand Up @@ -177,8 +178,11 @@
.name-item {
width: 260px;
margin: 0 13px 0 0;
line-height: 24px;
margin: 0 13px 0 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<template #append>
<BatchOperateIcon
class="ml-4"
@batch-click="handleShowBatchSelectCluster" />
@click="handleShowBatchSelectCluster" />
</template>
</RenderTableHeadColumn>
<RenderTableHeadColumn
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,6 @@
:model-value="data.originProxy?.instance_address"
@input-finish="handleOriginProxyInputFinish" />
</FixedColumn>
<td style="padding: 0">
<RenderRelatedClusters
ref="relatedClustersRef"
:list="localRelatedClusters" />
</td>
<td style="padding: 0">
<RenderTargetProxy
ref="originRef"
Expand Down Expand Up @@ -102,7 +97,6 @@
import OperateColumn from '@components/render-table/columns/operate-column/index.vue';

import RenderOriginalProxy from './RenderOriginalProxy.vue';
import RenderRelatedClusters from './RenderRelatedClusters.vue';
import RenderTargetProxy from './RenderTargetProxy.vue';

interface Props {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
ref="ignoreTablesRefs"
:allow-asterisk="false"
:cluster-id="localClusterId"
:model-value="backupInfoItem.ignoreTables" />
:model-value="backupInfoItem.ignoreTables"
:required="false" />
</td>
<OperateColumn
:removeable="removeable"
Expand Down

0 comments on commit 92ed204

Please sign in to comment.