We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e774ae commit 42fbaa3Copy full SHA for 42fbaa3
src/components/DBColumnInsert/DBColumnInsert.tsx
@@ -64,11 +64,12 @@ function DBColumnInsert({ onInsert }: PropTypes) {
64
return;
65
}
66
67
- if (!onInsert(`\`${name.replace(/`/g, '``')}\``, backtickedType(type))) {
+ const backtickedName = `\`${name.replace(/`/g, '``')}\``;
68
+ if (!onInsert(backtickedName, backtickedType(type))) {
69
setIsDupName(true);
70
notification.error({
71
message: 'Hive Column 입력 오류',
- description: `\`${name}\`은(는) 이미 존재하는 이름입니다.`,
72
+ description: `${backtickedName}은(는) 이미 존재하는 이름입니다.`,
73
placement: 'bottomRight',
74
});
75
0 commit comments