remove debounce

This commit is contained in:
Ayoub Ait Lachgar 2024-02-20 13:52:33 +01:00
parent 84b0b1db33
commit afd751561a
1 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,3 @@
import { useService } from 'bpmn-js-properties-panel';
import {
SelectEntry,
isTextFieldEntryEdited,
@ -141,8 +140,6 @@ function CorrelationPropertyRetrivialExpressionTextField(props) {
idPrefix
} = props;
const debounce = useService('debounceInput');
const setValue = (value) => {
const message = (isMessageEvent(element)) ? element.businessObject.eventDefinitions[0].messageRef : element.businessObject.messageRef;
@ -186,7 +183,6 @@ function CorrelationPropertyRetrivialExpressionTextField(props) {
id: `${id}-name-textField`,
label: translate('Retrivial Expression'),
getValue,
setValue,
debounce,
setValue
});
}