Skip to content

Commit 7a76338

Browse files
committed
Fixed combobox Opening Multiple type.
1 parent 1be09cc commit 7a76338

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/gwt/material/design/addins/client/combobox/MaterialComboBox.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,9 @@ public void load() {
202202

203203
// Tab Focus support
204204
body().on("focus", "#" + getId() + " .select2", (e, param1) -> {
205-
open();
205+
if (!isMultiple()) {
206+
open();
207+
}
206208
return true;
207209
});
208210

0 commit comments

Comments
 (0)