Skip to content

Commit 640c90c

Browse files
committed
Fix transitionProject not updating Project.modifiedAt
1 parent bd7d48e commit 640c90c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/project/workflow/project-workflow.neo4j.repository.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,9 @@ export class ProjectWorkflowNeo4jRepository
119119
object: { id: project },
120120
changes: {
121121
step: event.to,
122-
stepChangedAt: event.at,
123122
status: prevStatus === nextStatus ? undefined : nextStatus,
123+
stepChangedAt: event.at,
124+
modifiedAt: event.at,
124125
},
125126
permanentAfter: null,
126127
});

0 commit comments

Comments
 (0)