You need to stop the spread of the mouse. You can do it as follows:
<md-menu #appMenu="mdMenu" [overlapTrigger]="false" yPosition="below" xPosition="before" class="notifications-dropdown">
<md-tab-group (click)="stopClickPropagate($event)">
<md-tab label="My profile" id="personal"></md-tab>
<md-tab label="Favorites " id="favorite-tab"></md-tab>
</md-tab-group>
</md-menu>
and in component.ts file:
stopClickPropagate(event: any){
event.stopPropagation();
event.preventDefault();
}
- .