diff --git a/client/src/app/site/motions/models/view-motion.ts b/client/src/app/site/motions/models/view-motion.ts index 8fe2411ce..bf424dc52 100644 --- a/client/src/app/site/motions/models/view-motion.ts +++ b/client/src/app/site/motions/models/view-motion.ts @@ -405,6 +405,7 @@ export class ViewMotion extends BaseProjectableModel { public updateWorkflow(workflow: Workflow): void { if (this.motion && workflow.id === this.motion.workflow_id) { this._workflow = workflow; + this._state = workflow.getStateById(this.state_id); } }