Moved stuff around, changed the way I'm storing milestones data
This commit is contained in:
12
src/components/table/table.component.html
Normal file
12
src/components/table/table.component.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<table>
|
||||
<tr>
|
||||
<th *ngFor="let h of header">
|
||||
{{ h.label }}
|
||||
</th>
|
||||
</tr>
|
||||
<tr *ngFor="let row of rows; let index">
|
||||
<td *ngFor="let h of header">
|
||||
{{ row[h.source] }}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
Reference in New Issue
Block a user