We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a596b3c commit 39c4b79Copy full SHA for 39c4b79
src/main/java/gwt/material/design/addins/client/combobox/MaterialComboBox.java
@@ -217,7 +217,7 @@ public void clear() {
217
final Iterator<Widget> it = iterator();
218
while (it.hasNext()) {
219
final Widget widget = it.next();
220
- if (widget != label && widget != lblError) {
+ if (widget != label && widget != lblError && widget != listbox) {
221
it.remove();
222
}
223
0 commit comments