Skip to content

Commit

Permalink
fix(ui): Fix showWorkflows button. Fixes #5645 (#5693)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <alex_collins@intuit.com>
  • Loading branch information
alexec authored Apr 19, 2021
1 parent f963556 commit 0a6f2fc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const EventFlowPage = ({history, location, match}: RouteComponentProps<an
useEffect(
useQueryParams(history, p => {
setShowFlow(p.get('showFlow') === 'true');
setShowWorkflows(p.get('showWorkflows') !== 'false');
setShowWorkflows(p.get('showWorkflows') === 'true');
setExpanded(p.get('expanded') === 'true');
setSelectedNode(p.get('selectedNode'));
setTab(p.get('tab'));
Expand Down

0 comments on commit 0a6f2fc

Please sign in to comment.