-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Closed
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgent

Description
Bug, feature request, or proposal:
Bug on Chrome
What is the expected behavior?
md-list-avatar
should be correctly displayed.
What is the current behavior?
md-list-avatar
aren't correctly displayed on the initial render.
What are the steps to reproduce?
- Open Sidenav
- Select "Contact" Tab
- Avatars aren't correctly displayed
- Select "Menu" Tab
- Select "Contact" Tab
- Avatar are correctly displayed
<md-toolbar>
<button md-icon-button (click)="sidenav.opened = !sidenav.opened">
<md-icon alt="menu">menu</md-icon>
</button> Shop
</md-toolbar>
<md-sidenav-layout>
<md-sidenav #sidenav mode="over" >
<md-tab-group>
<md-tab>
<template md-tab-label>
Menu
</template>
<template md-tab-content>
</template>
</md-tab>
<md-tab>
<template md-tab-label>
Contact
</template>
<template md-tab-content>
<md-list>
<md-list-item *ngFor="let x of [1,2,3,4,5,6,7,8]">
<img md-list-avatar src="/assets/images/{{x}}.jpg" alt="">
<h3 md-line> John Doe </h3>
</md-list-item>
</md-list>
</template>
</md-tab>
</md-tab-group>
</md-sidenav>
<div [style.width]="'75vw'" [style.margin]="'auto'">
<router-outlet></router-outlet>
</div>
</md-sidenav-layout>
Which versions of Angular, Material, OS, browsers are affected?
angular-cli beta.16
angular material alpha.9-3
Chrome is affected, Firefox and Edge aren't.
Metadata
Metadata
Assignees
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgent