mirror of https://github.com/zulip/zulip.git
stream-settings: Add space between # and stream name in title.
This commit adds space between # and the stream name appearing at the top in right column in stream settings overlay.
This commit is contained in:
parent
2066860ab6
commit
e26de17ee1
|
@ -47,7 +47,7 @@ export const show_subs_pane = {
|
|||
settings(stream_name) {
|
||||
$(".settings, #stream-creation").hide();
|
||||
$(".settings").show();
|
||||
$("#subscription_overlay .stream-info-title").text("#" + stream_name);
|
||||
$("#subscription_overlay .stream-info-title").text("# " + stream_name);
|
||||
},
|
||||
create_stream() {
|
||||
$(".nothing-selected, .settings, #stream-creation").hide();
|
||||
|
|
Loading…
Reference in New Issue