Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,7 @@ To see Events V2 in action, check out the example configurations in the **countr
This version enforces environment to have Node 22 installed (supported until 30 April 2027) and removes support for Node 18 for better performance and using [new features](https://github.com/nodejs/node/releases/tag/v22.0.0) offered by NodeJS

- Use nvm to upgrade your local development environment to use node version `22.x.x.`
- Add collector form fields to the handlebars context so that helper can have logic targeting collector form values

- **UI enhancements**

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export function Review() {
createdByRole: userFromUsersList.role,
status: 'Accepted',
declaration: {},
annotation: null,
annotation,
originalActionId: null,
createdBySignature: userFromUsersList.signature,
createdAtLocation: userDetails.primaryOffice.id as UUID,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -362,7 +362,8 @@ export function compileSvg({
adminLevels
}
),
createdByRole: action.data.createdByRole
createdByRole: action.data.createdByRole,
annotation: action.data.annotation
}

return getMixedPath(resolvedAction, propertyPath)
Expand Down
Loading