Skip to content

Commit

Permalink
Fixed #6739 - DatePicker: manual input not working
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Dec 11, 2024
1 parent 62c14bf commit 0415d0b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/primevue/src/datepicker/DatePicker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
role="combobox"
:class="[inputClass, cx('pcInputText')]"
:style="inputStyle"
:value="inputFieldValue"
:defaultValue="inputFieldValue"
:placeholder="placeholder"
:name="name"
:size="size"
Expand Down Expand Up @@ -2591,6 +2591,7 @@ export default {
if (this.isValidSelection(value)) {
this.typeUpdate = true;
this.updateModel(value);
this.updateCurrentMetaData();
}
} catch (err) {
/* NoOp */
Expand Down

0 comments on commit 0415d0b

Please sign in to comment.