Skip to content

Commit fb37e51

Browse files
committed
Fixed DateOfBirthPicker
1 parent 9661556 commit fb37e51

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/gwt/material/design/incubator/client/dob/DateOfBirthPicker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ public void setValue(Date value) {
211211

212212
this.value = value;
213213
year.setValue(value.getYear() + 1900);
214-
day.setValue(value.getDay());
214+
day.setValue(value.getDate());
215215
month.setSingleValue(value.getMonth());
216216
}
217217

0 commit comments

Comments
 (0)