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.
This commit is contained in:
Rohitt Vashishtha 2020-05-06 03:24:43 +05:30 committed by Tim Abbott
parent 4643e48f60
commit d5576217fe
1 changed files with 3 additions and 0 deletions

View File

@ -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;
}