@infomaximum/widget-sdk 3.28.0 → 3.29.0
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
|
@@ -528,8 +528,7 @@ var escapeSpecialCharacters = function (formula) {
|
|
|
528
528
|
return formula
|
|
529
529
|
.replaceAll("\\", "\\\\")
|
|
530
530
|
.replaceAll('"', '\\"')
|
|
531
|
-
.replaceAll("`", "\\`")
|
|
532
|
-
.replaceAll("-", "\\-");
|
|
531
|
+
.replaceAll("`", "\\`");
|
|
533
532
|
};
|
|
534
533
|
|
|
535
534
|
function generateColumnFormula(tableName, columnName) {
|
package/dist/index.js
CHANGED
|
@@ -529,8 +529,7 @@ var escapeSpecialCharacters = function (formula) {
|
|
|
529
529
|
return formula
|
|
530
530
|
.replaceAll("\\", "\\\\")
|
|
531
531
|
.replaceAll('"', '\\"')
|
|
532
|
-
.replaceAll("`", "\\`")
|
|
533
|
-
.replaceAll("-", "\\-");
|
|
532
|
+
.replaceAll("`", "\\`");
|
|
534
533
|
};
|
|
535
534
|
|
|
536
535
|
function generateColumnFormula(tableName, columnName) {
|