mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 02:11:53 +00:00
* fix: fix building UI project * fix makefile * inputspec instead of config --------- Co-authored-by: Matt Hill <mattnine@protonmail.com>
19 lines
376 B
HTML
19 lines
376 B
HTML
<tui-notification
|
|
*ngIf="error$ | async as error"
|
|
appearance="negative"
|
|
safeLinks
|
|
>
|
|
{{ error }}
|
|
</tui-notification>
|
|
|
|
<div
|
|
*ngIf="content$ | async as result; else loading"
|
|
safeLinks
|
|
class="content-padding"
|
|
[innerHTML]="result | markdown | dompurify"
|
|
></div>
|
|
|
|
<ng-template #loading>
|
|
<tui-loader [textContent]="'Loading ' + title | titlecase" />
|
|
</ng-template>
|