Skip to content

Commit

Permalink
fix(ui): disable new graph filter options by default (argoproj#13835)
Browse files Browse the repository at this point in the history
Signed-off-by: Adrien Delannoy <[email protected]>
  • Loading branch information
Adrien-D authored Oct 29, 2024
1 parent eb23eb6 commit 030afbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/src/workflows/components/workflow-dag/workflow-dag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export class WorkflowDag extends React.Component<WorkflowDagProps, WorkflowDagRe
this.state = {
expandNodes: new Set(),
showArtifacts: localStorage.getItem('showArtifacts') !== 'false',
showInvokingTemplateName: localStorage.getItem('showInvokingTemplateName') !== 'false',
showTemplateRefsGrouping: localStorage.getItem('showTemplateRefsGrouping') !== 'false'
showInvokingTemplateName: localStorage.getItem('showInvokingTemplateName') === 'true',
showTemplateRefsGrouping: localStorage.getItem('showTemplateRefsGrouping') === 'true'
};
}

Expand Down

0 comments on commit 030afbc

Please sign in to comment.