Skip to content

Commit

Permalink
Deploy latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
egon-development committed Jul 30, 2024
1 parent c4d2a42 commit 5c8b6ae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
9 changes: 3 additions & 6 deletions app-latest-build/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -3252,8 +3252,8 @@ function initializeActivityUpdateHandler(canvasElementRegistryService) {
canvasElementRegistry = canvasElementRegistryService;
}
function activityUpdateHandler(commandStack, eventBus) {
commandStack.register("activity.directionChange", activity_directionChange);
commandStack.register("activity.changed", activity_changed);
commandStack.registerHandler("activity.directionChange", activity_directionChange);
commandStack.registerHandler("activity.changed", activity_changed);
// update the activity from the activity-dialog, either with or without number
// and change other activities too, to keep the numbers consistent
function activity_changed(modeling) {
Expand Down Expand Up @@ -3467,7 +3467,7 @@ __webpack_require__.r(__webpack_exports__);


function DSMassRenameHandler(commandStack, eventBus) {
commandStack.register("domainStoryObjects.massRename", massRename);
commandStack.registerHandler("domainStoryObjects.massRename", massRename);
function massRename(modeling) {
this.preExecute = function (context) {
let relevantElements = context.elements;
Expand Down Expand Up @@ -7596,9 +7596,6 @@ class ElementRegistryService {
return groupObjects;
}
checkChildForGroup(groupObjects, allObjects) {
if (!this.registry) {
return;
}
const registryElementNames = Object.keys(this.registry);
for (let name of registryElementNames) {
const entry = this.registry[name].element;
Expand Down
2 changes: 1 addition & 1 deletion app-latest-build/main.js.map

Large diffs are not rendered by default.

0 comments on commit 5c8b6ae

Please sign in to comment.