From d5576217fecdeaa6c562fb4b47080b48e986c4f2 Mon Sep 17 00:00:00 2001 From: Rohitt Vashishtha Date: Wed, 6 May 2020 03:24:43 +0530 Subject: [PATCH] typeaheads: Show tip text for silent mentions. This addition is prompted by the feedback and discussion at https://chat.zulip.org/#narrow/stream/137-feedback/topic/silent.20mention. --- static/js/composebox_typeahead.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/static/js/composebox_typeahead.js b/static/js/composebox_typeahead.js index fb8f883f86..794e7a0ae9 100644 --- a/static/js/composebox_typeahead.js +++ b/static/js/composebox_typeahead.js @@ -917,6 +917,9 @@ function get_header_text() { case 'stream': tip_text = i18n.t('Press > for list of topics'); break; + case 'silent_mention': + tip_text = i18n.t('User will not be notified'); + break; default: return false; }