Skip to content

Commit 8f3022f

Browse files
committed
Fix transitionProject mutation not returning fresh project from event handler updates
1 parent f3d5e2f commit 8f3022f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/project/workflow/project-workflow.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class ProjectWorkflowService extends WorkflowService(
105105
);
106106
await this.eventBus.publish(event);
107107

108-
return this.projects.secure(updated, session);
108+
return this.projects.secure(event.project, session);
109109
}
110110

111111
/** @deprecated */

0 commit comments

Comments
 (0)