mirror of
https://github.com/google/nomulus
synced 2026-05-31 03:56:33 +00:00
* Header initialized * Added settings page * switch history mode to hash * Add eslint * Add prettier and reformat * Contact details in a bottom sheet for mobile devices * Add contact details events abstraction * Fix formatting issue and update deps versions
22 lines
534 B
HTML
22 lines
534 B
HTML
<h3>Recent Activity</h3>
|
|
<table
|
|
mat-table
|
|
[dataSource]="dataSource"
|
|
class="mat-elevation-z8 console-home__activity"
|
|
>
|
|
<ng-container
|
|
*ngFor="let column of columns"
|
|
[matColumnDef]="column.columnDef"
|
|
>
|
|
<th mat-header-cell *matHeaderCellDef>
|
|
{{ column.header }}
|
|
</th>
|
|
<td mat-cell *matCellDef="let row">
|
|
{{ column.cell(row) }}
|
|
</td>
|
|
</ng-container>
|
|
|
|
<tr mat-header-row *matHeaderRowDef="displayedColumns"></tr>
|
|
<tr mat-row *matRowDef="let row; columns: displayedColumns"></tr>
|
|
</table>
|