Skip to content

Commit dc5ae3a

Browse files
committed
fix
1 parent 2adea5d commit dc5ae3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/utils/pipeHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export const isEventHandled = <
2727
return shouldTreatEventAsHandled;
2828
}
2929

30-
return event.isDefaultPrevented() || event.isPropagationStopped();
30+
return event.isPropagationStopped();
3131
};
3232

3333
/**

0 commit comments

Comments
 (0)