Merge pull request #19158 from faissaloux/fix-query-generator-backticks

Fix `Query Generator` backticks
This commit is contained in:
Maurício Meneghini Fauth 2024-05-23 19:25:45 -03:00 committed by GitHub
commit 3dad383953
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -430,7 +430,7 @@ Functions.escapeJsString = function (unsafe) {
* @return {string}
*/
Functions.escapeBacktick = function (s) {
return s.replace('`', '``');
return s.replaceAll('`', '``');
};
/**