mirror of
https://github.com/zulip/zulip.git
synced 2025-11-17 04:12:02 +00:00
compose notifications: Add # before stream name in notification header.
This commit is contained in:
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user