Skip to content

Commit

Permalink
_selectCurrentEvenIfPartialMatch -> _selectPartialMatch
Browse files Browse the repository at this point in the history
  • Loading branch information
josefarias committed Feb 25, 2024
1 parent 7746652 commit 49ff476
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Combobox.Selection = Base => class extends Base {
}
}

_selectCurrentEvenIfPartialMatch() {
_selectPartialMatch() {
this._select(this._visibleOptionElements[0], { force: true })
this.filter(nullEvent)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Combobox.Toggle = Base => class extends Base {
if (!this._isQueried) return

if (!this._isNewOptionWithPotentialMatches(this._actingCombobox.value)) {
this._selectCurrentEvenIfPartialMatch()
this._selectPartialMatch()
}
}

Expand Down

0 comments on commit 49ff476

Please sign in to comment.