FIX: computed is part of @ember/object not @ember/object/computed

This commit is contained in:
Robin Ward
2019-11-13 11:57:42 -05:00
parent e98d94f17f
commit f518065654
15 changed files with 22 additions and 39 deletions

View File

@ -1,6 +1,6 @@
import { isEmpty } from "@ember/utils";
import { default as computed, gt, equal, or } from "@ember/object/computed";
import EmberObject from "@ember/object";
import { gt, equal, or } from "@ember/object/computed";
import EmberObject, { computed } from "@ember/object";
import { ajax } from "discourse/lib/ajax";
import { url } from "discourse/lib/computed";
import RestModel from "discourse/models/rest";