Skip to content

Commit

Permalink
Update table.component.html
Browse files Browse the repository at this point in the history
  • Loading branch information
heinerwalter authored Nov 27, 2024
1 parent 2c3a543 commit 6a638c9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

<thead *ngIf="header?.length">
<tr>
<th *ngFor="let cell of header; let c = index" c == 0 ? 'width: 1%;' : ''>{{cell}}</th>
<th *ngFor="let cell of header; let c = index"
[style]="c == 0 ? 'width: 1%;' : ''">{{cell}}</th>
</tr>
</thead>

Expand Down

0 comments on commit 6a638c9

Please sign in to comment.