Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
atellmer committed May 17, 2024
1 parent e9ceab2 commit 366a5a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/platform-browser/src/events/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class SyntheticEvent<E extends Event, T = TagNativeElement> {
type = '';
sourceEvent: E = null;
target: T = null;
private propagation = true;
propagation = true; //should be private but typescript has a bug

constructor(options: Pick<SyntheticEvent<E, T>, 'sourceEvent' | 'target'>) {
this.type = options.sourceEvent.type;
Expand Down

0 comments on commit 366a5a6

Please sign in to comment.