Fixed #6739 - DatePicker: manual input not working
parent
62c14bf2ff
commit
0415d0b171
|
@ -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 */
|
||||||
|
|
Loading…
Reference in New Issue