@infomaximum/widget-sdk 4.0.0-beta16 → 4.0.0-beta17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +1 -2
- package/dist/index.js +1 -2
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -555,8 +555,7 @@ var escapeSpecialCharacters = function (formula) {
|
|
|
555
555
|
return formula
|
|
556
556
|
.replaceAll("\\", "\\\\")
|
|
557
557
|
.replaceAll('"', '\\"')
|
|
558
|
-
.replaceAll("`", "\\`")
|
|
559
|
-
.replaceAll("-", "\\-");
|
|
558
|
+
.replaceAll("`", "\\`");
|
|
560
559
|
};
|
|
561
560
|
|
|
562
561
|
function generateColumnFormula(tableName, columnName) {
|
package/dist/index.js
CHANGED
|
@@ -556,8 +556,7 @@ var escapeSpecialCharacters = function (formula) {
|
|
|
556
556
|
return formula
|
|
557
557
|
.replaceAll("\\", "\\\\")
|
|
558
558
|
.replaceAll('"', '\\"')
|
|
559
|
-
.replaceAll("`", "\\`")
|
|
560
|
-
.replaceAll("-", "\\-");
|
|
559
|
+
.replaceAll("`", "\\`");
|
|
561
560
|
};
|
|
562
561
|
|
|
563
562
|
function generateColumnFormula(tableName, columnName) {
|