mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2026-09-16 18:13:06 +00:00
* add CTRL + L new log component in demo shell to test the log service bus * remove trivial definition * close tag app-log
13 lines
339 B
HTML
13 lines
339 B
HTML
<mat-card class="log-card" *ngIf="show">
|
|
<mat-card-header>
|
|
<mat-card-title><h2>Log Service</h2></mat-card-title>
|
|
</mat-card-header>
|
|
<mat-card-content class="log-container">
|
|
|
|
<div *ngIf="logsData">
|
|
<adf-datatable [data]="logsData"></adf-datatable>
|
|
</div>
|
|
|
|
</mat-card-content>
|
|
</mat-card>
|