We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68e3319 commit c608c17Copy full SHA for c608c17
src/lib/Room/Room.vue
@@ -749,7 +749,8 @@ export default {
749
while (
750
position > 0 &&
751
this.message.charAt(position - 1) !== tagChar &&
752
- this.message.charAt(position - 1) !== ' '
+ // eslint-disable-next-line no-unmodified-loop-condition
753
+ (this.message.charAt(position - 1) !== ' ' || tagChar !== ':')
754
) {
755
position--
756
}
0 commit comments