Skip to content

Commit

Permalink
fix: history show loading
Browse files Browse the repository at this point in the history
Signed-off-by: Mirko Mollik <[email protected]>
  • Loading branch information
cre8 committed Apr 26, 2024
1 parent 53deed3 commit f711c1c
Showing 1 changed file with 22 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
<div fxLayout="row" fxLayoutAlign="space-between center">
<div fxLayout="row" fxLayoutGap="16px" fxLayoutAlign="start center">
<button mat-icon-button [routerLink]="'../'">
<mat-icon>arrow_back</mat-icon>
</button>
<h3>{{ element.relyingParty }}</h3>
<div *ngIf="element">
<div fxLayout="row" fxLayoutAlign="space-between center">
<div fxLayout="row" fxLayoutGap="16px" fxLayoutAlign="start center">
<button mat-icon-button [routerLink]="'../'">
<mat-icon>arrow_back</mat-icon>
</button>
<h3>{{ element.relyingParty }}</h3>
</div>
</div>
<mat-card>
<mat-card-content>
<mat-list>
<mat-list-item>
<div matListItemTitle>Created at</div>
<div matListItemLine>{{ element.created_at | date: 'medium' }}</div>
</mat-list-item>
<mat-list-item>
<div matListItemTitle>Action</div>
<div matListItemLine>{{ element.status }}</div>
</mat-list-item>
</mat-list>
</mat-card-content>
</mat-card>
</div>
<mat-card>
<mat-card-content>
<mat-list>
<mat-list-item>
<div matListItemTitle>Created at</div>
<div matListItemLine>{{ element.created_at | date: 'medium' }}</div>
</mat-list-item>
<mat-list-item>
<div matListItemTitle>Action</div>
<div matListItemLine>{{ element.status }}</div>
</mat-list-item>
</mat-list>
</mat-card-content>
</mat-card>

0 comments on commit f711c1c

Please sign in to comment.