Fix blank definition for user value filters [SCI-6509] (#3834)

This commit is contained in:
artoscinote 2022-02-11 10:14:45 +01:00 committed by GitHub
parent bac8fbbe58
commit 553bde0bf5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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') ) ;
}
}