mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 22:39:46 +00:00
20 lines
547 B
HTML
20 lines
547 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Logs</ion-title>
|
|
<ion-buttons slot="end">
|
|
<ion-button (click)="getLogs()">
|
|
<ion-icon slot="icon-only" name="refresh-outline"></ion-icon>
|
|
</ion-button>
|
|
</ion-buttons>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content class="ion-padding" color="light">
|
|
|
|
<text-spinner *ngIf="!logs" text="Loading Logs"></text-spinner>
|
|
|
|
<div style="white-space: pre-line;">{{ logs }}</div>
|
|
</ion-content> |