adding data browser

This commit is contained in:
2024-09-08 22:11:51 -04:00
parent e88499cbaf
commit 224e6388c1
48 changed files with 1037 additions and 75 deletions

View File

@@ -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>