@sapui5/sap.fe.core 1.96.13 → 1.96.14
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/package.json
CHANGED
package/src/sap/fe/core/.library
CHANGED
|
@@ -80,8 +80,7 @@ sap.ui.define(
|
|
|
80
80
|
if (!sSearchTerm) {
|
|
81
81
|
return undefined;
|
|
82
82
|
}
|
|
83
|
-
|
|
84
|
-
return sSearchTerm.replace(/"/g, " ").replace(/\\/g, "\\\\"); //escape backslash characters. Can be removed if odata/binding handles backend errors responds.
|
|
83
|
+
return '"' + sSearchTerm.replace(/"/g, " ").replace(/\\/g, "\\\\") + '"'; //escape backslash characters. Can be removed if odata/binding handles backend errors responds.
|
|
85
84
|
//we do not include .split() and .reduce() like in the higher releases, since these two will change the search term in an incompatible way
|
|
86
85
|
}
|
|
87
86
|
|