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 635d5cb commit 384e98eCopy full SHA for 384e98e
server/src/main/java/com/vaadin/data/Binder.java
@@ -1286,7 +1286,7 @@ private BindingValidationStatus<TARGET> writeFieldValue(BEAN bean) {
1286
setter.accept(bean, value);
1287
if (value != null) {
1288
FIELDVALUE converted = convertToFieldType(value);
1289
- if (!field.getValue().equals(converted)) {
+ if (!Objects.equals(field.getValue(), converted)) {
1290
getField().setValue(converted);
1291
}
1292
0 commit comments