From c521f59e80916a6f6ead8689585316e7712b3e48 Mon Sep 17 00:00:00 2001 From: Jacob Haddad Date: Tue, 26 Mar 2024 11:10:49 -0700 Subject: [PATCH] fix(advanced-routing): remove extraneous condition on parseRouteParams --- .../src/desktop/tabs/other/routing/AdvancedRoutingPanel.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/client-app/src/desktop/tabs/other/routing/AdvancedRoutingPanel.tsx b/client-app/src/desktop/tabs/other/routing/AdvancedRoutingPanel.tsx index ffdacd1ed..8039d3ff4 100644 --- a/client-app/src/desktop/tabs/other/routing/AdvancedRoutingPanel.tsx +++ b/client-app/src/desktop/tabs/other/routing/AdvancedRoutingPanel.tsx @@ -155,7 +155,6 @@ class AdvancedRoutingPanelModel extends HoistModel { @action private async parseRouteParams() { - if (this.gridModel.empty) return; const {groupBy, sortBy, selectedId} = XH.routerState.params; if (groupBy) this.setGroupBy(groupBy); if (sortBy) this.setSortBy(sortBy);