mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-04 14:44:26 +08:00
Fix blank definition for user value filters [SCI-6509] (#3834)
This commit is contained in:
parent
bac8fbbe58
commit
553bde0bf5
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@
|
|||
},
|
||||
computed: {
|
||||
isBlank(){
|
||||
return (this.operator == 'any_of' && !this.value) ||
|
||||
return (this.operator === 'any_of' && this.value.length === 0) ||
|
||||
(this.filter.column.id === 'archived_by' && $('.repository-show').hasClass('active') ) ;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue