mirror of
https://github.com/zulip/zulip.git
synced 2025-11-10 08:56:10 +00:00
eslint: Fix unicorn/prefer-spread.
This was initially disabled for IE/Babel-related reasons that no longer apply. Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
committed by
Tim Abbott
parent
941a9bab38
commit
2a70c11c5f
@@ -22,7 +22,7 @@ export class TaskData {
|
||||
}
|
||||
|
||||
get_widget_data() {
|
||||
const all_tasks = Array.from(this.task_map.values());
|
||||
const all_tasks = [...this.task_map.values()];
|
||||
all_tasks.sort((a, b) => util.strcmp(a.task, b.task));
|
||||
|
||||
const pending_tasks = [];
|
||||
|
||||
Reference in New Issue
Block a user