Skip to content

Commit

Permalink
Process management: Fixed js error while editing activity dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasSchmitt committed Feb 8, 2024
1 parent d7d77e5 commit 2c62f54
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# 7.0.16 2024-??-??
- 2024-02-08 Process management: Fixed js error while editing activity dialog.
- 2024-02-06 Fixed handling of (un)selecting checkboxes on permissions table for AdminCustomerUserGroup.
- 2024-02-05 AdminOAuth2TokenManagement: Added filter for (in)valid entries.
- 2024-02-02 Removed session data from support bundle generator.
Expand Down
4 changes: 3 additions & 1 deletion var/httpd/htdocs/js/Core.Agent.Admin.ProcessManagement.js
Original file line number Diff line number Diff line change
Expand Up @@ -1243,7 +1243,9 @@ Core.Agent.Admin.ProcessManagement = (function (TargetNS) {
FieldConfigElement.Config = {};
}

CKEDITOR.instances['Body'].updateElement();
if (typeof CKEDITOR !== 'undefined') {
CKEDITOR.instances['Body'].updateElement();
}
FieldConfigElement.Config.Subject = $('#Subject').val();
FieldConfigElement.Config.Body = $('#Body').val();

Expand Down

0 comments on commit 2c62f54

Please sign in to comment.