Skip to content

Commit 39c4b79

Browse files
committed
Fixes 189 #2, listbox should not be deleted also
fix #1 fixed label and error label, but getValue() was always returning null!
1 parent a596b3c commit 39c4b79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public void clear() {
217217
final Iterator<Widget> it = iterator();
218218
while (it.hasNext()) {
219219
final Widget widget = it.next();
220-
if (widget != label && widget != lblError) {
220+
if (widget != label && widget != lblError && widget != listbox) {
221221
it.remove();
222222
}
223223
}

0 commit comments

Comments
 (0)