mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
24 lines
734 B
HTML
24 lines
734 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" class="ion-padding-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">
|
|
|
|
<ion-item *ngIf="error" style="margin-bottom: 16px;">
|
|
<ion-text class="ion-text-wrap" color="danger">{{ error }}</ion-text>
|
|
</ion-item>
|
|
|
|
<ion-spinner *ngIf="!logs" class="center" name="lines" color="warning"></ion-spinner>
|
|
|
|
<p style="white-space: pre-line;">{{ logs }}</p>
|
|
</ion-content> |