fix: fix timepicker parseTime()
when value is null
This commit is contained in:
parent
80dc4eb7a9
commit
ffd694e7b7
|
@ -517,6 +517,9 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
parseTime(value) {
|
parseTime(value) {
|
||||||
|
if (!value) {
|
||||||
|
return value
|
||||||
|
}
|
||||||
|
|
||||||
if (value.getHours) {
|
if (value.getHours) {
|
||||||
return value
|
return value
|
||||||
|
|
Loading…
Reference in a new issue