mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-30 20:14:49 +00:00
24 lines
881 B
HTML
24 lines
881 B
HTML
<ion-header>
|
|
<ion-toolbar>
|
|
<ion-buttons slot="start">
|
|
<pwa-back-button></pwa-back-button>
|
|
</ion-buttons>
|
|
<ion-title>Release Notes</ion-title>
|
|
</ion-toolbar>
|
|
</ion-header>
|
|
|
|
<ion-content>
|
|
<text-spinner *ngIf="!marketplaceService.releaseNotes[pkgId]; else loaded" text="Loading Release Notes"></text-spinner>
|
|
|
|
<ng-template #loaded>
|
|
<div *ngFor="let note of marketplaceService.releaseNotes[pkgId] | keyvalue : asIsOrder">
|
|
<ion-button (click)="setSelected(note.key)" expand="full" color="light" style="height: 50px;" >
|
|
<p style="position: absolute; left: 10px;">{{ note.key | displayEmver }}</p>
|
|
</ion-button>
|
|
<ion-card *ngIf="selected === note.key" class="acc-text" color="light" >
|
|
<ion-text id='release-notes' [innerHTML]="note.value | markdown"></ion-text>
|
|
</ion-card>
|
|
</div>
|
|
</ng-template>
|
|
</ion-content>
|