1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix problem with compact events

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-02-10 11:34:07 -05:00
parent b144eb916b
commit 6bb990c3e7

View File

@ -215,7 +215,7 @@ export class ItemListLayout extends React.Component<ItemListLayoutProps> {
}
});
const items = this.props.items ?? allItems;
const items = this.applyFilters(this.props.filterItems, this.props.items) ?? allItems;
return this.applyFilters(filterItems, items);
}