Skip to content

Commit

Permalink
refactor(popover): renames private method (#7286)
Browse files Browse the repository at this point in the history
**Related Issue:** None

## Summary

- renames private method from `handlefocusTrapDisabled` to
`handleFocusTrapDisabled`
  • Loading branch information
driskull authored Jul 6, 2023
1 parent e6e9ce6 commit b08c58b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export class Popover
@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 b08c58b

Please sign in to comment.