Skip to content

Commit

Permalink
Fix Format Cell broken with custom text
Browse files Browse the repository at this point in the history
Signed-off-by: Darshan-upadhyay1110 <[email protected]>
Change-Id: I27cf86972e70d956b9005fc1ea0b65a622e898d7
  • Loading branch information
Darshan-upadhyay1110 committed Oct 18, 2023
1 parent 90cfa44 commit 9c99488
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser/src/control/Control.JSDialogBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ L.Control.JSDialogBuilder = L.Control.extend({
(objectType === 'responsebutton' && (data == 0 || data == 7)))) {
window.onClose();
}
data = typeof data === 'string' ? data.replace('"', '\\"') : data;
data = typeof data === 'string' ? data.replaceAll('"', '\\"') : data;
var windowId = builder.windowId !== null && builder.windowId !== undefined ? builder.windowId :
(window.mobileDialogId !== undefined ? window.mobileDialogId :
(window.sidebarId !== undefined ? window.sidebarId : -1));
Expand Down

0 comments on commit 9c99488

Please sign in to comment.