mirror of https://github.com/zulip/zulip.git
compose notifications: Add # before stream name in notification header.
This commit is contained in:
parent
ee04677d4b
commit
291df7ac2a
|
@ -531,7 +531,7 @@ export function send_test_notification(content) {
|
|||
// Handlebars templates that will do further escaping.
|
||||
function get_message_header(message) {
|
||||
if (message.type === "stream") {
|
||||
return message.stream + " > " + message.topic;
|
||||
return `#${message.stream} > ${message.topic}`;
|
||||
}
|
||||
if (message.display_recipient.length > 2) {
|
||||
return $t(
|
||||
|
|
Loading…
Reference in New Issue