mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-01-27 17:55:04 +00:00
Fix add message fire event (#1775)
* Fix add message fire event * Remove comment code & log
This commit is contained in:
parent
79bef27b3b
commit
8472e83de5
@ -46,13 +46,10 @@ export function MessageEditor({
|
||||
...currentMessagesForId.correlation_properties,
|
||||
};
|
||||
(formData.correlation_properties || []).forEach((formProp: any) => {
|
||||
if (!(formProp.id in newCorrelationProperties)) {
|
||||
newCorrelationProperties[formProp.id] = {
|
||||
retrieval_expression: formProp.retrievalExpression,
|
||||
};
|
||||
}
|
||||
newCorrelationProperties[formProp.id] = {
|
||||
retrieval_expression: formProp.retrievalExpression,
|
||||
};
|
||||
});
|
||||
|
||||
Object.keys(currentMessagesForId.correlation_properties || []).forEach(
|
||||
(propId: string) => {
|
||||
const foundProp = (formData.correlation_properties || []).find(
|
||||
|
Loading…
x
Reference in New Issue
Block a user