Skip to content

Commit

Permalink
fix: correct event options to use 'bubbles' and 'composed' in AuroCou…
Browse files Browse the repository at this point in the history
…nter and AuroCounterGroup components
  • Loading branch information
rmenner committed Feb 5, 2025
1 parent 55c93db commit 859994c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions components/counter/src/auro-counter-group.js
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ export class AuroCounterGroup extends LitElement {
},
}),
{
bubble: true,
composable: true,
bubbles: true,
composed: true,
}
);
}
Expand Down
4 changes: 2 additions & 2 deletions components/counter/src/auro-counter.js
Original file line number Diff line number Diff line change
Expand Up @@ -295,8 +295,8 @@ export class AuroCounter extends LitElement {
},
}),
{
bubble: true,
composable: true,
bubbles: true,
composed: true,
}
);
}
Expand Down

0 comments on commit 859994c

Please sign in to comment.