Fix blank state for dates range [SCI-6576] (#3893)

Co-authored-by: Anton <anton@scinote.net>
This commit is contained in:
aignatov-bio 2022-02-24 12:47:32 +01:00 committed by GitHub
parent fa6aeac1d9
commit 899f2efbd6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,9 +38,7 @@ export default {
},
updateValue() {
if (this.date && this.dateTo) {
this.value = this.rangeObject(this.date, this.dateTo);
}
this.value = this.rangeObject(this.date, this.dateTo);
}
}
}