Fixed #6739 - DatePicker: manual input not working

pull/6577/merge
Mert Sincan 2024-12-11 14:45:10 +00:00
parent 62c14bf2ff
commit 0415d0b171
1 changed files with 2 additions and 1 deletions

View File

@ -7,7 +7,7 @@
role="combobox" role="combobox"
:class="[inputClass, cx('pcInputText')]" :class="[inputClass, cx('pcInputText')]"
:style="inputStyle" :style="inputStyle"
:value="inputFieldValue" :defaultValue="inputFieldValue"
:placeholder="placeholder" :placeholder="placeholder"
:name="name" :name="name"
:size="size" :size="size"
@ -2591,6 +2591,7 @@ export default {
if (this.isValidSelection(value)) { if (this.isValidSelection(value)) {
this.typeUpdate = true; this.typeUpdate = true;
this.updateModel(value); this.updateModel(value);
this.updateCurrentMetaData();
} }
} catch (err) { } catch (err) {
/* NoOp */ /* NoOp */