We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6880a2f commit 3e38c34Copy full SHA for 3e38c34
src/dialog/overflow-menu/overflow-menu-pane.component.ts
@@ -98,7 +98,7 @@ export class OverflowMenuPane extends Dialog {
98
clickClose(event) {
99
if (this.dialogConfig.parentRef.nativeElement.firstChild.contains(event.target) ||
100
this.listItems().some(button => button === event.relatedTarget) ||
101
- (event.type === "focusout" && event.relatedTarget === this.dialogConfig.parentRef.nativeElement)) {
+ event.type === "focusout" && event.relatedTarget === this.dialogConfig.parentRef.nativeElement) {
102
return;
103
}
104
this.doClose();
0 commit comments