mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 12:11:56 +00:00
* fix a few, more to go * chore: comments (#2871) * chore: comments * chore: typo * chore: stricter typescript (#2872) * chore: comments * chore: stricter typescript --------- Co-authored-by: Matt Hill <MattDHill@users.noreply.github.com> * minor styling --------- Co-authored-by: Alex Inkin <alexander@inkin.ru>
24 lines
517 B
HTML
24 lines
517 B
HTML
<a
|
|
routerLink="../"
|
|
tuiButton
|
|
iconStart="@tui.chevron-left"
|
|
appearance="icon"
|
|
[style.align-self]="'flex-start'"
|
|
>
|
|
Back
|
|
</a>
|
|
<tui-scrollbar childList subtree (waMutationObserver)="restoreScroll()">
|
|
<section
|
|
class="top"
|
|
waIntersectionObserver
|
|
(waIntersectionObservee)="onTop(!!$event[0]?.isIntersecting)"
|
|
>
|
|
@if (loading) {
|
|
<tui-loader textContent="Loading logs" />
|
|
}
|
|
</section>
|
|
@for (log of logs; track log) {
|
|
<pre [innerHTML]="log | dompurify"></pre>
|
|
}
|
|
</tui-scrollbar>
|