You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some of the logic in helper functions, when detecting if the caret is overlapping an @mention, or when searching for @mention patterns in a piece of text, are including punctuation characters in the mention. We need to avoid that.
An example, for a text like Hello @user, how are you?, the mention that we detect is @user, instead of @user.
Rob suggested applying a regexp like the one used by the backend: #6797 (comment)
The text was updated successfully, but these errors were encountered:
Some of the logic in helper functions, when detecting if the caret is overlapping an
@mention
, or when searching for@mention
patterns in a piece of text, are including punctuation characters in the mention. We need to avoid that.An example, for a text like
Hello @user, how are you?
, the mention that we detect is@user,
instead of@user
.Rob suggested applying a regexp like the one used by the backend: #6797 (comment)
The text was updated successfully, but these errors were encountered: