Skip to content

Commit 3c56ef6

Browse files
committed
fix(NewMessage): compare value from store with parsed value
- to avoid issues with special symbols described in #11803 Signed-off-by: Maksim Sukharev <[email protected]>
1 parent ed27439 commit 3c56ef6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/NewMessage/NewMessage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ export default {
523523
},
524524

525525
chatInput(newValue) {
526-
if (this.text !== newValue) {
526+
if (parseSpecialSymbols(this.text) !== newValue) {
527527
this.text = newValue
528528
}
529529
},

0 commit comments

Comments
 (0)