mirror of
https://github.com/zulip/zulip.git
synced 2025-11-03 13:33:24 +00:00
eslint: Enable arrow-parens.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
d51afcf485
commit
b0253c5a2e
@@ -347,7 +347,7 @@ exports.remove_reaction = function (event) {
|
||||
return;
|
||||
}
|
||||
|
||||
r.user_ids = r.user_ids.filter(id => id !== user_id);
|
||||
r.user_ids = r.user_ids.filter((id) => id !== user_id);
|
||||
if (r.user_ids.length > 0) {
|
||||
exports.update_user_fields(r);
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user