Merge imports from the same module (#9144)

This commit is contained in:
Jarek Radosz
2020-03-09 17:38:37 +01:00
committed by GitHub
parent e35bc8bebd
commit 5037b80c9c
43 changed files with 44 additions and 105 deletions

View File

@ -1,6 +1,4 @@
import { once } from "@ember/runloop";
import { debounce } from "@ember/runloop";
import { cancel } from "@ember/runloop";
import { cancel, debounce, once } from "@ember/runloop";
import Component from "@ember/component";
import { equal, gt } from "@ember/object/computed";
import { Promise } from "rsvp";

View File

@ -1,5 +1,4 @@
import { debounce } from "@ember/runloop";
import { cancel } from "@ember/runloop";
import { cancel, debounce } from "@ember/runloop";
import Component from "@ember/component";
import { gt } from "@ember/object/computed";
import computed, { on } from "discourse-common/utils/decorators";