We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ff28e commit eb343a2Copy full SHA for eb343a2
src/table/head/table-head-cell.component.ts
@@ -68,7 +68,11 @@ import { TableHeaderItem } from "../table-header-item.class";
68
<div
69
class="cds--table-header-label"
70
*ngIf="!skeleton && this.sort.observers.length === 0 || (this.sort.observers.length > 0 && !column.sortable) || !sortable">
71
- <span *ngIf="!column.template" [title]="column.data">{{column.data}}</span>
+ <span *ngIf="!column.template" [title]="column.data">
72
+ <ng-container *ngIf="!skeleton">
73
+ {{column.data}}
74
+ </ng-container>
75
+ </span>
76
<ng-template
77
[ngTemplateOutlet]="column.template" [ngTemplateOutletContext]="{data: column.data}">
78
</ng-template>
0 commit comments