Skip to content

Commit

Permalink
chore: fix event handler casing (#7108)
Browse files Browse the repository at this point in the history
**Related Issue:** N/A

## Summary

✨🧹✨
  • Loading branch information
jcfranco authored Jun 3, 2023
1 parent e552e93 commit 1d05daf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/modal/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class Modal
@Prop({ reflect: true }) focusTrapDisabled = false;

@Watch("focusTrapDisabled")
handlefocusTrapDisabled(focusTrapDisabled: boolean): void {
handleFocusTrapDisabled(focusTrapDisabled: boolean): void {
if (!this.open) {
return;
}
Expand Down

0 comments on commit 1d05daf

Please sign in to comment.