Skip to content

Commit b5fb4ab

Browse files
committed
fix(material/table): th with nbsp; instead of span
1 parent 037d246 commit b5fb4ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components-examples/material/table/table-expandable-rows/table-expandable-rows-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<td mat-cell *matCellDef="let element"> {{element[column]}} </td>
77
</ng-container>
88
<ng-container matColumnDef="expand">
9-
<th mat-header-cell *matHeaderCellDef><span aria-label="row actions"></span></th>
9+
<th mat-header-cell *matHeaderCellDef aria-label="row actions">&nbsp;</th>
1010
<td mat-cell *matCellDef="let element">
1111
<button mat-icon-button aria-label="expand row" (click)="(expandedElement = expandedElement === element ? null : element); $event.stopPropagation()">
1212
<mat-icon *ngIf="expandedElement !== element">keyboard_arrow_down</mat-icon>

src/components-examples/material/table/table-sticky-columns/table-sticky-columns-example.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
<!-- Star Column -->
2929
<ng-container matColumnDef="star" stickyEnd>
30-
<th mat-header-cell *matHeaderCellDef><span aria-label="row actions"></span></th>
30+
<th mat-header-cell *matHeaderCellDef aria-label="row actions">&nbsp;</th>
3131
<td mat-cell *matCellDef="let element">
3232
<mat-icon>more_vert</mat-icon>
3333
</td>

0 commit comments

Comments
 (0)