FIX: allows forcing unsafe string in select-kit (#6386)

forceEscape will be defaulted to true before next release.
This commit is contained in:
Joffrey JAFFEUX
2018-09-12 12:19:04 +02:00
committed by GitHub
parent 2cc48cfd06
commit 38668818a5
16 changed files with 192 additions and 21 deletions

View File

@ -31,12 +31,9 @@ export default SelectKitComponent.extend({
this.set("values", []);
}
this.set(
"headerComponentOptions",
Ember.Object.create({
selectedNameComponent: this.get("selectedNameComponent")
})
);
this.get("headerComponentOptions").setProperties({
selectedNameComponent: this.get("selectedNameComponent")
});
},
@on("didRender")