We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db705c commit 788e7f6Copy full SHA for 788e7f6
ui/src/app/store/workflow.state.ts
@@ -1124,12 +1124,6 @@ export class WorkflowState {
1124
@Action(actionWorkflow.GetWorkflowRun)
1125
getWorkflowRun(ctx: StateContext<WorkflowStateModel>, action: actionWorkflow.GetWorkflowRun) {
1126
const state = ctx.getState();
1127
- if (state.workflowRun &&
1128
- action.payload.num.toString() === state.workflowRun.num.toString() &&
1129
- action.payload.workflowName === state.workflow.name &&
1130
- action.payload.projectKey === state.projectKey) {
1131
- return;
1132
- }
1133
ctx.setState({
1134
...state,
1135
loadingWorkflowRun: true,
0 commit comments