mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
js: Fix type issue with FormatJS rich text elements.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
b582d5886c
commit
3a718d786f
@@ -392,7 +392,8 @@ export function validation_error(error_type, stream_name) {
|
||||
},
|
||||
{
|
||||
stream_name,
|
||||
"z-link": (content_html) => `<a href='#streams/all'>${content_html}</a>`,
|
||||
"z-link": (content_html) =>
|
||||
`<a href='#streams/all'>${content_html.join("")}</a>`,
|
||||
},
|
||||
);
|
||||
compose_error.show(response, $("#stream_message_recipient_stream"));
|
||||
|
||||
Reference in New Issue
Block a user