Skip to content

Commit 3e38c34

Browse files
Remove brackets
Co-Authored-By: youda97 <[email protected]>
1 parent 6880a2f commit 3e38c34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dialog/overflow-menu/overflow-menu-pane.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ export class OverflowMenuPane extends Dialog {
9898
clickClose(event) {
9999
if (this.dialogConfig.parentRef.nativeElement.firstChild.contains(event.target) ||
100100
this.listItems().some(button => button === event.relatedTarget) ||
101-
(event.type === "focusout" && event.relatedTarget === this.dialogConfig.parentRef.nativeElement)) {
101+
event.type === "focusout" && event.relatedTarget === this.dialogConfig.parentRef.nativeElement) {
102102
return;
103103
}
104104
this.doClose();

0 commit comments

Comments
 (0)