Skip to content

Commit 6880a2f

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

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
@@ -97,7 +97,7 @@ export class OverflowMenuPane extends Dialog {
9797

9898
clickClose(event) {
9999
if (this.dialogConfig.parentRef.nativeElement.firstChild.contains(event.target) ||
100-
this.listItems().some(button => button === (event.relatedTarget)) ||
100+
this.listItems().some(button => button === event.relatedTarget) ||
101101
(event.type === "focusout" && event.relatedTarget === this.dialogConfig.parentRef.nativeElement)) {
102102
return;
103103
}

0 commit comments

Comments
 (0)