Skip to content

Commit

Permalink
fix: compatible with Sogou input (tiny-craft#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
tiny-craft committed Jul 2, 2024
1 parent ea44253 commit 410dcd9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/components/content_value/ContentCli.vue
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,8 @@ const updateInput = (data) => {
if (data == null || data.length <= 0) {
return
}
// replace &nbsp;(Non-Breaking Space) with normal blank space
data = data.replace(/\u00A0/g, ' ')
if (termInst == null) {
return
Expand Down

0 comments on commit 410dcd9

Please sign in to comment.