mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-08 00:23:01 +08:00
Fix results datetime picker [SCI-9628]
This commit is contained in:
parent
d1f5fef45e
commit
2a0001c953
1 changed files with 2 additions and 2 deletions
|
@ -53,9 +53,9 @@
|
|||
methods: {
|
||||
updateFilter(params) {
|
||||
if (params.value !== '' && params.value !== undefined && params.value !== null) {
|
||||
this.$set(this.filterValues, params.key, params.value);
|
||||
this.filterValues[params.key] = params.value;
|
||||
} else {
|
||||
this.$delete(this.filterValues, params.key);
|
||||
delete this.filterValues[params.key];
|
||||
}
|
||||
},
|
||||
applyFilters() {
|
||||
|
|
Loading…
Reference in a new issue