Skip to content

Commit

Permalink
fix(platform): table showing info bar with selected filters
Browse files Browse the repository at this point in the history
closes [#11783](#11783)

## Description

- Fiex build
  • Loading branch information
khotcholava committed Oct 24, 2024
1 parent d96ea3f commit 4d7965d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export class TableToolbarComponent implements TableToolbarInterface {
this._searchInputText = state.searchInput?.text ?? '';
});

this._table.tableColumnFilterChange.pipe(takeUntilDestroyed(this._destroyRef)).subscribe(() => {
this._table.tableColumnFilterChange?.pipe(takeUntilDestroyed(this._destroyRef)).subscribe(() => {
this._isFilterToolbarVisible.set(true);
});
}
Expand Down

0 comments on commit 4d7965d

Please sign in to comment.