adding data browser
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
<table>
|
||||
<tr>
|
||||
<th *ngFor="let h of header">
|
||||
<th></th>
|
||||
<th *ngFor="let h of headers">
|
||||
{{ h.label }}
|
||||
</th>
|
||||
</tr>
|
||||
<tr *ngFor="let row of rows | async; let index">
|
||||
<td>{{ index }}</td>
|
||||
<td *ngFor="let h of header">
|
||||
<tr *ngFor="let row of rows; index as i">
|
||||
<td>{{ i }}</td>
|
||||
<td *ngFor="let h of headers">
|
||||
{{ row[h.source] }}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user