From fe03dd078926a474d4c44ce705ac41f03bcb3c0a Mon Sep 17 00:00:00 2001 From: Gani Georgiev Date: Thu, 30 Mar 2023 12:17:56 +0300 Subject: [PATCH] use backtick in index column preset --- ui/src/utils/CommonHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/utils/CommonHelper.js b/ui/src/utils/CommonHelper.js index 49a73274..9adf36a9 100644 --- a/ui/src/utils/CommonHelper.js +++ b/ui/src/utils/CommonHelper.js @@ -1587,7 +1587,7 @@ export default class CommonHelper { item += col.name; } else { // regular identifier - item += `"${col.name}"`; + item += ("`" + col.name + "`"); } if (col.collate) {