Skip to content

Commit c0bfa2d

Browse files
author
alkavats1
committed
fix(multiple): update the html tags and add the alt attr
html tags like b and i are update and add the alt attribute in the img tag
1 parent bd07f7b commit c0bfa2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/components-examples/cdk/dialog/cdk-dialog-overview/cdk-dialog-overview-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
<button (click)="openDialog()">Pick one</button>
88
</li>
99
<li *ngIf="animal">
10-
You chose: <i>{{animal}}</i>
10+
You chose: <em>{{animal}}</em>
1111
</li>
1212
</ol>

src/components-examples/cdk/listbox/cdk-listbox-compare-with/cdk-listbox-compare-with-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
<!-- #enddocregion listbox -->
1919
</div>
2020
<p *ngIf="appointment[0]">
21-
Your appointment is scheduled for <b>{{formatAppointment() | json}}</b>&nbsp;
21+
Your appointment is scheduled for <strong>{{formatAppointment() | json}}</strong>&nbsp;
2222
</p>

src/components-examples/material/card/card-media-size/card-media-size-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<mat-card-title-group>
1818
<mat-card-title>Shiba Inu</mat-card-title>
1919
<mat-card-subtitle>Medium</mat-card-subtitle>
20-
<img mat-card-md-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" >
20+
<img mat-card-md-image src="https://material.angular.io/assets/img/examples/shiba2.jpg" alt='example2'>
2121
</mat-card-title-group>
2222
</mat-card-header>
2323
<mat-card-content>

0 commit comments

Comments
 (0)