updated ui/dist

This commit is contained in:
Gani Georgiev
2023-02-26 11:00:52 +02:00
parent 0bb58eb52c
commit dc96a12dc0
29 changed files with 35 additions and 35 deletions
+1 -1
View File
@@ -1377,7 +1377,7 @@ export default class CommonHelper {
for (let expr of expressions) {
const column = expr.trim().split(" ").pop(); // get only the alias
if (column != "" && column != groupReplacement) {
result.push(column.replace(/[\'\"\`\[\]]/g, ""));
result.push(column.replace(/[\'\"\`\[\]\s]/g, ""));
}
}