Skip to content

Commit

Permalink
fixed displaying flow with disabled stages
Browse files Browse the repository at this point in the history
  • Loading branch information
godfryd committed Jul 7, 2023
1 parent cf89a85 commit e6ac5d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/app/flow-page/flow-page.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export class FlowPageComponent implements OnInit, OnDestroy {
}

selectRunNode(data) {
if (!data.run.runData) {
if (data.run && !data.run.runData) {
this.prepareRunDataStr(data.run)
}
this.selectedNode = data
Expand Down

0 comments on commit e6ac5d1

Please sign in to comment.