js: Remove inner spacing from object literals.

We’re configuring Prettier with bracketSpacing: false.  Generated by
ESLint.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-07-16 13:40:18 -07:00
committed by Tim Abbott
parent a20c12366f
commit 883e2fd325
100 changed files with 491 additions and 490 deletions

View File

@@ -882,7 +882,7 @@ exports.warn_if_private_stream_is_linked = function (linked_stream) {
const stream_name = linked_stream.name;
const warning_area = $("#compose_private_stream_alert");
const context = { stream_name: stream_name };
const context = {stream_name: stream_name};
const new_row = render_compose_private_stream_alert(context);
warning_area.append(new_row);