Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/uui-combobox/lib/uui-combobox.element.ts
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {
};

#renderInput = () => {
return html` <uui-input
return html`<uui-input
slot="trigger"
id="combobox-input"
label="combobox-input"
Expand Down Expand Up @@ -383,7 +383,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {

render() {
if (this._isPhone && this.open) {
return html` <div id="phone-wrapper">
return html`<div id="phone-wrapper">
<uui-button label="close" look="primary" @click=${this.#onClose}>
${this.closeLabel}
</uui-button>
Expand All @@ -405,7 +405,7 @@ export class UUIComboboxElement extends UUIFormControlMixin(LitElement, '') {
static styles = [
css`
:host {
display: inline-block;
display: inline-flex;
}

#combobox-input {
Expand Down
Loading