Skip to content

Commit 3e1ce8f

Browse files
authored
Merge pull request #276 from ksbecker/patch-1
refactor(MultiSelect): change `overflow: scroll` to `overflow: auto`
2 parents c1d92aa + c286de7 commit 3e1ce8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/src/multi-select.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ class MultiSelect extends BaseComponent {
479479

480480
if (this._config.optionsMaxHeight !== 'auto') {
481481
optionsDiv.style.maxHeight = `${this._config.optionsMaxHeight}px`
482-
optionsDiv.style.overflow = 'scroll'
482+
optionsDiv.style.overflow = 'auto'
483483
}
484484

485485
dropdownDiv.append(optionsDiv)

0 commit comments

Comments
 (0)