mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-31 04:23:40 +00:00
* fix bugs with config and clean up dev options * dont down down arrow in logs prematurely * change config error border to match error text red color * change restart button color * fix error when sideloading and update copy * adds back in param cloning as this bug creeped up again * make restarting text match button color * fix version comparision for updates category Co-authored-by: Matt Hill <matthill@Matt-M1.local> Co-authored-by: Lucy Cifferello <12953208+elvece@users.noreply.github.com>
62 lines
1.5 KiB
HTML
62 lines
1.5 KiB
HTML
<ion-content
|
|
[scrollEvents]="true"
|
|
(ionScroll)="scrollEvent()"
|
|
style="height: 100%"
|
|
class="ion-padding"
|
|
>
|
|
<ion-infinite-scroll
|
|
id="scroller"
|
|
*ngIf="!loading && needInfinite"
|
|
position="top"
|
|
threshold="0"
|
|
(ionInfinite)="loadData($event)"
|
|
>
|
|
<ion-infinite-scroll-content
|
|
loadingSpinner="lines"
|
|
></ion-infinite-scroll-content>
|
|
</ion-infinite-scroll>
|
|
|
|
<text-spinner *ngIf="loading" text="Loading Logs"></text-spinner>
|
|
|
|
<div id="container">
|
|
<div
|
|
id="template"
|
|
style="white-space: pre-line; font-family: monospace"
|
|
></div>
|
|
</div>
|
|
<div id="button-div" *ngIf="!loading" style="width: 100%; text-align: center">
|
|
<ion-button *ngIf="!loadingMore" (click)="loadMore()" strong color="dark">
|
|
Load More
|
|
<ion-icon slot="end" name="refresh"></ion-icon>
|
|
</ion-button>
|
|
<ion-spinner *ngIf="loadingMore" name="lines" color="warning"></ion-spinner>
|
|
</div>
|
|
|
|
<div
|
|
*ngIf="!loading"
|
|
[ngStyle]="{
|
|
'position': 'fixed',
|
|
'bottom': '36px',
|
|
'right': isOnBottom ? '-52px' : '36px',
|
|
'background-color': 'var(--ion-color-medium)',
|
|
'border-radius': '100%',
|
|
'transition': 'right 0.4s ease-out'
|
|
}"
|
|
>
|
|
<ion-button
|
|
style="
|
|
width: 50px;
|
|
height: 50px;
|
|
--padding-start: 0px;
|
|
--padding-end: 0px;
|
|
--border-radius: 100%;
|
|
"
|
|
color="dark"
|
|
(click)="scrollToBottom()"
|
|
strong
|
|
>
|
|
<ion-icon name="chevron-down"></ion-icon>
|
|
</ion-button>
|
|
</div>
|
|
</ion-content>
|