Skip to content

Commit

Permalink
fix: Add DAG as default in UI filter and reorder (#2661)
Browse files Browse the repository at this point in the history
  • Loading branch information
simster7 committed Apr 10, 2020
1 parent 0a2c0d1 commit f99fa50
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ export const defaultNodesToDisplay = [
'phase:Error',
'type:Pod',
'type:Steps',
'type:DAG',
'type:Retry',
'type:Skipped',
'type:Suspend'
Expand Down Expand Up @@ -117,12 +118,12 @@ export class WorkflowDetails extends React.Component<RouteComponentProps<any>, W
{content: () => <span>Type</span>},
{value: 'type:Pod', label: 'Pod'},
{value: 'type:Steps', label: 'Steps'},
{value: 'type:StepGroup', label: 'StepGroup'},
{value: 'type:DAG', label: 'DAG'},
{value: 'type:TaskGroup', label: 'TaskGroup'},
{value: 'type:Retry', label: 'Retry'},
{value: 'type:Skipped', label: 'Skipped'},
{value: 'type:Suspend', label: 'Suspend'}
{value: 'type:Suspend', label: 'Suspend'},
{value: 'type:TaskGroup', label: 'TaskGroup'},
{value: 'type:StepGroup', label: 'StepGroup'}
],
selectedValues: this.state.workflowDagRenderOptions.nodesToDisplay,
selectionChanged: items => {
Expand Down

0 comments on commit f99fa50

Please sign in to comment.