Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 3 additions & 4 deletions packages/combo-box/src/vaadin-combo-box-base-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -241,14 +241,13 @@ export const ComboBoxBaseMixin = (superClass) =>

/**
* Create and initialize the scroller element.
* Override to provide custom host reference.
*
* @protected
* @private
*/
_initScroller(host) {
_initScroller() {
const scroller = document.createElement(`${this._tagNamePrefix}-scroller`);

scroller.owner = host || this;
scroller.owner = this;
scroller.getItemLabel = this._getItemLabel.bind(this);
scroller.addEventListener('selection-changed', this._boundOverlaySelectedItemChanged);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ export const multiSelectComboBoxStyles = css`
--_chip-min-width: var(--vaadin-multi-select-combo-box-chip-min-width, 50px);
}

:host([opened]) {
pointer-events: auto;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Base styles for MSCB already have this as they extend combo-box base styles.

}

#chips {
display: flex;
align-items: center;
Expand Down
Loading