Revert "Fix bug with Data Object Interceptor picking up too much."

Seems to be preventing someone from saving the file.
This reverts commit c807dbcb2c.
This commit is contained in:
Dan 2023-04-04 17:16:19 -04:00
parent c807dbcb2c
commit 76e6ac22f4
3 changed files with 3 additions and 4 deletions

View File

@ -78,6 +78,3 @@ html, body {
right: 10px;
}
.djs-palette.two-column.open {
width: 95px;
}

View File

@ -51,7 +51,8 @@ export default class DataObjectInterceptor extends CommandInterceptor {
flowElements.push(businessObject);
businessObject.$parent = realParent;
}
}
} else
bpmnUpdater.__proto__.updateSemanticParent.call(this, businessObject, parentBusinessObject);
};
/**

View File

@ -35,6 +35,7 @@ module.exports = {
new CopyWebpackPlugin({
patterns: [
{ from: 'assets/**', to: 'vendor/bpmn-js', context: 'node_modules/bpmn-js/dist/' },
{ from: '*.css', to: 'vendor/bpmn-js-color-picker', context: 'node_modules/bpmn-js-color-picker/colors' },
{
from: 'assets/**',
to: 'vendor/bpmn-js-properties-panel',