Update the max length for the filters (#19194)

1.Fixes #19193

Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
Shijun Sun 2023-08-16 17:14:34 +08:00 committed by GitHub
parent 56f6c27c4f
commit 0e9fe03e54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ export class VulnerabilityFilterComponent {
}
canAdd(): boolean {
return this.selectedOptions.length < 7;
return this.selectedOptions.length < this.allOptions.length;
}
canReduce(): boolean {