Skip to content

Commit

Permalink
fix(filter): add the "filled" class for styling purposes - ajust code…
Browse files Browse the repository at this point in the history
… format
  • Loading branch information
mcallegario committed Dec 14, 2021
1 parent ea7974a commit abe481e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/common/src/filters/selectFilter.ts
Expand Up @@ -229,7 +229,7 @@ export class SelectFilter implements Filter {
values = Array.isArray(values) ? values : [values];
this.$filterElm.multipleSelect('setSelects', values);
}
if (this.getValues().length > 0 ) {
if (this.getValues().length > 0) {
this.isFilled = true;
this.$filterElm?.addClass('filled').siblings('div .search-filter').addClass('filled');
} else {
Expand Down

0 comments on commit abe481e

Please sign in to comment.