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 371ba80 commit d1d316c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,10 +163,10 @@
};

const handleIgnoreDbsChange = (value: string[]) => {
if (isDropDatabase.value && value.length > 0) {
ignoreTables.value = ['*'];
return;
}
// if (isDropDatabase.value && value.length > 0) {
// ignoreTables.value = ['*'];
// return;
// }
ignoreTables.value = [];
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,10 @@
};

const handleIgnoreDbsChange = (value: string[]) => {
if (isDropDatabase.value && value.length > 0) {
ignoreTables.value = ['*'];
return;
}
// if (isDropDatabase.value && value.length > 0) {
// ignoreTables.value = ['*'];
// return;
// }
ignoreTables.value = [];
};

Expand Down

0 comments on commit d1d316c

Please sign in to comment.