Skip to content

Commit

Permalink
undo filter length check
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomThomson committed Oct 6, 2022
1 parent 8a6b645 commit a4e5a16
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,7 @@ export const syncDashboardControlGroup = async ({
),
skip(1) // skip first filter output because it will have been applied in initialize
)
.subscribe(({ filters }) => {
if (filters && filters.length > 0) {
dashboardContainer.updateInput({ lastReloadRequestTime: Date.now() });
}
})
.subscribe(() => dashboardContainer.updateInput({ lastReloadRequestTime: Date.now() }))
);

subscriptions.add(
Expand Down

0 comments on commit a4e5a16

Please sign in to comment.