mirror of https://github.com/zulip/zulip.git
minor: Remove irrelevant comments in stream_edit.js.
Remove comments in the module stream_edit.js that became
irrelevant after changes in commit 96e035a
.
This commit is contained in:
parent
06121e1f69
commit
ba62d2ff8c
|
@ -655,7 +655,6 @@ export function change_stream_name(e) {
|
|||
}
|
||||
|
||||
channel.patch({
|
||||
// Stream names might contain unsafe characters so we must encode it first.
|
||||
url: "/json/streams/" + stream_id,
|
||||
data: {new_name},
|
||||
success() {
|
||||
|
@ -707,7 +706,6 @@ export function change_stream_description(e) {
|
|||
}
|
||||
|
||||
channel.patch({
|
||||
// Description might contain unsafe characters so we must encode it first.
|
||||
url: "/json/streams/" + stream_id,
|
||||
data: {
|
||||
description,
|
||||
|
|
Loading…
Reference in New Issue