REFACTOR: s/focusAfterOnchange/focusAfterOnChange (#9801)

This commit is contained in:
Joffrey JAFFEUX 2020-05-16 11:20:37 +02:00 committed by GitHub
parent db8e872bda
commit e81a4048e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -12,7 +12,7 @@
options=(hash
popupTitle=b.title
icon=b.icon
focusAfterOnchange=false
focusAfterOnChange=false
)
}}
{{else}}

View File

@ -271,7 +271,7 @@ export default Component.extend(
selectedNameComponent: "selected-name",
castInteger: false,
preventsClickPropagation: false,
focusAfterOnchange: true
focusAfterOnChange: true
},
autoFilterable: computed("content.[]", "selectKit.filter", function() {
@ -430,7 +430,7 @@ export default Component.extend(
this.selectKit.close();
}
if (this.selectKit.options.focusAfterOnchange) {
if (this.selectKit.options.focusAfterOnChange) {
this._safeAfterRender(() => {
this._focusFilter();
this.popper && this.popper.update();

View File

@ -261,7 +261,7 @@ componentTest("prevents propagating click event on header", {
componentTest("focusAfterOnChange", {
template:
"{{d-button class='focus-me'}}{{single-select options=(hash focusAfterOnchange=focusAfterOnchange) value=value content=content onChange=onChange}}",
"{{d-button class='focus-me'}}{{single-select options=(hash focusAfterOnChange=focusAfterOnChange) value=value content=content onChange=onChange}}",
beforeEach() {
this.setProperties({
@ -275,7 +275,7 @@ componentTest("focusAfterOnChange", {
},
async test(assert) {
this.set("focusAfterOnchange", true);
this.set("focusAfterOnChange", true);
await this.subject.expand();
await this.subject.selectRowByIndex(0);
@ -285,7 +285,7 @@ componentTest("focusAfterOnChange", {
"it selects the header"
);
this.set("focusAfterOnchange", false);
this.set("focusAfterOnChange", false);
await this.subject.expand();
await this.subject.selectRowByIndex(0);