minor cleanup

This commit is contained in:
burnettk 2022-09-30 16:16:16 -04:00
parent 9de648c5c6
commit 2db50cb738
2 changed files with 2 additions and 4 deletions

View File

@ -249,15 +249,13 @@ function ServiceTaskParameterTextField(props) {
}
export function ServiceTaskResultTextInput(props) {
const {element, translate, commandStack} = props;
const { element, translate, commandStack } = props;
const debounce = useService('debounceInput');
const serviceTaskOperatorModdleElement =
getServiceTaskOperatorModdleElement(element);
console.log("Service Task Operator:", serviceTaskOperatorModdleElement)
const setValue = (value) => {
console.log("Setting the result variable.");
commandStack.execute('element.updateModdleProperties', {
element,
moddleElement: serviceTaskOperatorModdleElement,

View File

@ -41,7 +41,7 @@ describe('Properties Panel for Service Tasks', function () {
function addServicesToModeler(bpmnModeler) {
/**
* This will inject available services into the modler which should be
* This will inject available services into the modeler which should be
* available as a dropdown list when selecting which service you want to call.
*
*/