DEV: Remove Ember.Mixin to import @ember/object/mixin (#8269)

This commit is contained in:
Mark VanLandingham
2019-10-30 14:03:08 -05:00
committed by Robin Ward
parent e7eeb7c47f
commit ba4b557114
32 changed files with 68 additions and 32 deletions

View File

@ -1,5 +1,6 @@
import computed from "ember-addons/ember-computed-decorators";
import { categoryLinkHTML } from "discourse/helpers/category-link";
import Mixin from '@ember/object/mixin';
const CUSTOM_TYPES = [
"bool",
@ -19,7 +20,7 @@ const CUSTOM_TYPES = [
const AUTO_REFRESH_ON_SAVE = ["logo", "logo_small", "large_icon"];
export default Ember.Mixin.create({
export default Mixin.create({
classNameBindings: [":row", ":setting", "overridden", "typeClass"],
content: Ember.computed.alias("setting"),
validationMessage: null,