We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 21b1424 + 21503d8 commit ac17b54Copy full SHA for ac17b54
1 file changed
src/ui/src/renderer/useFormValueBroker.ts
@@ -55,18 +55,6 @@ export function useFormValueBroker<T = any>(
55
) {
56
formValue.value = eventValue;
57
58
- const isHandlerSet = component.value.handlers?.[emitEventType];
59
- const isBindingSet =
60
- component.value.binding?.eventType == emitEventType;
61
- const isBlueprintAttached = useComponentLinkedBlueprints(
62
- wf,
63
- componentId,
64
- emitEventType,
65
- ).isLinked.value;
66
-
67
- // Event is not used
68
- if (!isHandlerSet && !isBindingSet && !isBlueprintAttached) return;
69
70
if (isBusy.value) {
71
// Queued event is overwritten for debouncing purposes
72
0 commit comments