Skip to content

Commit

Permalink
fix: trigger ci (#2284)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdehaven authored Jul 16, 2024
1 parent 6ff8b93 commit 02e72e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/KSelect/KSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ const onInputBlur = (): void => {
}
const onInputClick = (): void => {
// If filtering is not enabled, the internal KInput still steals focus when clicked.
// If filtering is not enabled, the internal KInput activates the keyboard on mobile when clicked even though it's not needed.
// This will blur the input and prevent the keyboard from activating on mobile.
if (!props.enableFiltering) {
inputElement.value?.$el?.querySelector('input')?.blur()
Expand Down

0 comments on commit 02e72e9

Please sign in to comment.