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 24f6e80 commit 917dd2eCopy full SHA for 917dd2e
src/main/java/com/flowingcode/vaadin/addons/chipfield/ChipField.java
@@ -157,11 +157,13 @@ private void configure() {
157
() -> {
158
if (isAllowAdditionalItems()) {
159
if (newItemHandler == null) {
160
+ setPresentationValue(getValue());
161
throw new IllegalStateException(
162
"You need to setup a NewItemHandler");
163
}
164
return this.newItemHandler.apply(chipLabel);
165
} else {
166
167
168
"Adding new items is not allowed, but still receiving new items (not present in DataProvider) from client-side. Probably wrong configuration.");
169
0 commit comments