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:
Sahil Batra 2022-01-26 15:52:04 +05:30 committed by Tim Abbott
parent 2066860ab6
commit e26de17ee1
1 changed files with 1 additions and 1 deletions

View File

@ -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();