Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(search): Detach bug fix (#205)
  • Loading branch information
kilchenmann committed Oct 7, 2020
1 parent 2835864 commit 9a5b537
Showing 1 changed file with 3 additions and 1 deletion.
Expand Up @@ -97,7 +97,9 @@ export class SearchPanelComponent {
* Close the search menu
*/
closeMenu(): void {
this.overlayRef.detach();
if(this.overlayRef) {
this.overlayRef.detach();
}
}

}

0 comments on commit 9a5b537

Please sign in to comment.