Closed
Description
Bug, feature request, or proposal:
bug
What are the steps to reproduce?
I update from angular 5.x and cli 1.7.x and rxjs 5.x to v6rc.x
I only update in my module this MatMenuModule
and use it like:
<div *ngFor="let item of data">
<button mat-icon-button [matMenuTriggerFor]="appMenu"></button>
<mat-menu #appMenu="matMenu" [overlapTrigger]="false"
class="slds-dropdown slds-dropdown_left slds-dropdown_actions">
<ul class="slds-dropdown__list" role="menu">
<li (click)="onClickCreerPO.emit({bail:item, nature:'Rent'})">
<a href="javascript:void(0);">PO Loyer</a>
</li>
<li (click)="onClickCreerPO.emit({bail:item, nature:'AddedRent'})">
<a href="javascript:void(0);">PO Surplus</a>
</li>
</ul>
</mat-menu>
</div>
Before
It was working before update.