Skip to content

Commit

Permalink
fix(status): fixed when story is open status doesnt load
Browse files Browse the repository at this point in the history
  • Loading branch information
cocotime committed Sep 29, 2023
1 parent 423316f commit b932f22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export class StoryDetailEffects {
return this.actions$.pipe(
ofType(StoryDetailApiActions.fetchStorySuccess),
concatLatestFrom(() => [
this.store.select(selectWorkflow).pipe(filterNil()),
this.store.select(selectWorkflow),
this.store.select(selectCurrentProject).pipe(filterNil()),
]),
concatMap(([action, loadedWorkflow, project]) => {
Expand Down

0 comments on commit b932f22

Please sign in to comment.