Skip to content

Commit 9b6d616

Browse files
committed
fix: correct escape character for double quotes in string replacement
1 parent 5076197 commit 9b6d616

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/IdentityManager2/Assets/Scripts/App/ttIdmUI.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@
179179
.replace(/&/g, "&")
180180
.replace(/</g, "&lt;")
181181
.replace(/>/g, "&gt;")
182-
.replace(/\"/g, "&quot;")
182+
.replace(/"/g, "&quot;")
183183
.replace(/'/g, "&#39;");
184184
}
185185

src/IdentityManager2/Assets/Scripts/Bundle.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)