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
3 changed files with 6 additions and 6 deletions

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);