FIX: makes sur allowUncategorized is passed to category-selector

This commit is contained in:
Joffrey JAFFEUX 2018-01-26 14:41:30 +01:00 committed by GitHub
parent 3fde4c9db7
commit 0eb71cef98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ export default MultiSelectComponent.extend({
rowComponent: "category-row", rowComponent: "category-row",
categories: null, categories: null,
blacklist: null, blacklist: null,
allowUncategorized: true,
init() { init() {
this._super(); this._super();
@ -21,6 +22,7 @@ export default MultiSelectComponent.extend({
}); });
this.get("rowComponentOptions").setProperties({ this.get("rowComponentOptions").setProperties({
allowUncategorized: this.get("allowUncategorized"),
displayCategoryDescription: false displayCategoryDescription: false
}); });
}, },