From 79c0366cc71e00edc21f341a6d0eb70c55374d6b Mon Sep 17 00:00:00 2001 From: burnettk Date: Fri, 7 Apr 2023 12:06:49 -0400 Subject: [PATCH] Squashed 'bpmn-js-spiffworkflow/' changes from 6391337a8..24a71ec5e 24a71ec5e do not update element properties if we do not need to since it can cause a change event w/ burnettk git-subtree-dir: bpmn-js-spiffworkflow git-subtree-split: 24a71ec5e2cbbefce58be4b4610151db4a55a8e1 --- .../extensions/propertiesPanel/SpiffExtensionSelect.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/app/spiffworkflow/extensions/propertiesPanel/SpiffExtensionSelect.js b/app/spiffworkflow/extensions/propertiesPanel/SpiffExtensionSelect.js index 9f7bbbaa..33fb0c67 100644 --- a/app/spiffworkflow/extensions/propertiesPanel/SpiffExtensionSelect.js +++ b/app/spiffworkflow/extensions/propertiesPanel/SpiffExtensionSelect.js @@ -84,10 +84,6 @@ function requestOptions(eventBus, element, commandStack, optionType) { // or you risk a race condition. eventBus.once(`spiff.${optionType}.returned`, (event) => { spiffExtensionOptions[optionType] = event.options; - commandStack.execute('element.updateProperties', { - element, - properties: {}, - }); }); eventBus.fire(`spiff.${optionType}.requested`, { eventBus }); }