Skip to content

Commit

Permalink
Remove escape chars on input columns
Browse files Browse the repository at this point in the history
  • Loading branch information
angelej committed Nov 27, 2024
1 parent 0fd9af5 commit 44343be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
return
}
let newState = $refs.newState.value
let newState = $refs.newState.value.replaceAll('\\'+String.fromCharCode(34), String.fromCharCode(34))
if (state === newState) {
return
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
return
}
let newState = $refs.newState.value
let newState = $refs.newState.value.replaceAll('\\'+String.fromCharCode(34), String.fromCharCode(34))
if (state === newState) {
return
Expand Down

0 comments on commit 44343be

Please sign in to comment.