Skip to content

Commit

Permalink
Merge pull request #4603 from alkem-io/release-whiteboard-templates
Browse files Browse the repository at this point in the history
[0.92.3] Bugfix unable to edit Callout-Whiteboard templates
  • Loading branch information
hero101 authored Oct 10, 2024
2 parents e97695c + 2ab4204 commit 3d800d8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alkemio-server",
"version": "0.92.2",
"version": "0.92.3",
"description": "Alkemio server, responsible for managing the shared Alkemio platform",
"author": "Alkemio Foundation",
"private": false,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,13 @@ export class CalloutFramingService {
calloutFraming.whiteboard,
calloutFramingData.whiteboard
);
if (calloutFramingData.whiteboard.content) {
calloutFraming.whiteboard =
await this.whiteboardService.updateWhiteboardContent(
calloutFraming.whiteboard.id,
calloutFramingData.whiteboard.content
);
}
}

return calloutFraming;
Expand Down

0 comments on commit 3d800d8

Please sign in to comment.