Skip to content

Commit

Permalink
fix(ui5-multi-combobox): fix scoping by querying on pure tag attr
Browse files Browse the repository at this point in the history
  • Loading branch information
ilhan007 committed Jul 8, 2024
1 parent 98ed22d commit 165b0e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/main/src/MultiComboBox.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1849,7 +1849,7 @@ class MultiComboBox extends UI5Element {
get _innerInput(): HTMLInputElement {
if (isPhone()) {
if (this.allItemsPopover?.opened) {
return this.allItemsPopover.querySelector("ui5-input")!.shadowRoot!.querySelector("input")!;
return this.allItemsPopover.querySelector("[ui5-input]")!.shadowRoot!.querySelector("input")!;
}
}

Expand Down

0 comments on commit 165b0e0

Please sign in to comment.