Skip to content

Commit

Permalink
Merge pull request filamentphp#14903 from angelej/fix-input-columns
Browse files Browse the repository at this point in the history
Remove escape chars on input columns
  • Loading branch information
danharrin authored Nov 29, 2024
2 parents caff9ed + 44343be commit 7267a92
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 7267a92

Please sign in to comment.