From 6bb990c3e7c6e75cad151b4be3cc56df7305b27c Mon Sep 17 00:00:00 2001 From: Jim Ehrismann Date: Wed, 10 Feb 2021 11:34:07 -0500 Subject: [PATCH] fix problem with compact events Signed-off-by: Jim Ehrismann --- src/renderer/components/item-object-list/item-list-layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/components/item-object-list/item-list-layout.tsx b/src/renderer/components/item-object-list/item-list-layout.tsx index 5eeb7b2f11..b4371b17c8 100644 --- a/src/renderer/components/item-object-list/item-list-layout.tsx +++ b/src/renderer/components/item-object-list/item-list-layout.tsx @@ -215,7 +215,7 @@ export class ItemListLayout extends React.Component { } }); - const items = this.props.items ?? allItems; + const items = this.applyFilters(this.props.filterItems, this.props.items) ?? allItems; return this.applyFilters(filterItems, items); }