mirror of https://github.com/zulip/zulip.git
stream_create: Remove banner shown on successful API request.
There was a banner showed on channel creation page on successful completion of the API request, but we do not need that now since we anyways move to a different UI, either the settings for the created channel or to the message view narrowed to the new channel.
This commit is contained in:
parent
916ddd4832
commit
77c1204d45
|
@ -348,10 +348,6 @@ function create_stream(): void {
|
|||
success(): void {
|
||||
$("#create_stream_name").val("");
|
||||
$("#create_stream_description").val("");
|
||||
ui_report.success(
|
||||
$t_html({defaultMessage: "Channel successfully created!"}),
|
||||
$(".stream_create_info"),
|
||||
);
|
||||
loading.destroy_indicator($("#stream_creating_indicator"));
|
||||
// The rest of the work is done via the subscribe event we will get
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue