summaryrefslogtreecommitdiffstats
path: root/webapp/components/suggestion/channel_mention_provider.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/suggestion/channel_mention_provider.jsx')
-rw-r--r--webapp/components/suggestion/channel_mention_provider.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/components/suggestion/channel_mention_provider.jsx b/webapp/components/suggestion/channel_mention_provider.jsx
index 0058bcc73..d80433271 100644
--- a/webapp/components/suggestion/channel_mention_provider.jsx
+++ b/webapp/components/suggestion/channel_mention_provider.jsx
@@ -24,7 +24,7 @@ class ChannelMentionSuggestion extends Suggestion {
className += ' suggestion--selected';
}
- const description = '(!' + item.channel.name + ')';
+ const description = '(~' + item.channel.name + ')';
return (
<div
@@ -72,7 +72,7 @@ function filterChannelsByPrefix(channels, prefix, limit) {
export default class ChannelMentionProvider {
handlePretextChanged(suggestionId, pretext) {
- const captured = (/(^|\s)(!([^!]*))$/i).exec(pretext.toLowerCase());
+ const captured = (/(^|\s)(~([^~]*))$/i).exec(pretext.toLowerCase());
if (captured) {
const prefix = captured[3];
@@ -122,7 +122,7 @@ export default class ChannelMentionProvider {
const wrapped = wrappedChannels.concat(wrappedMoreChannels);
- const mentions = wrapped.map((item) => '!' + item.channel.name);
+ const mentions = wrapped.map((item) => '~' + item.channel.name);
SuggestionStore.clearSuggestions(suggestionId);
SuggestionStore.addSuggestions(suggestionId, mentions, wrapped, ChannelMentionSuggestion, captured[2]);