Skip to content

Commit

Permalink
HELLODATA-1890 - fix sidebar broken
Browse files Browse the repository at this point in the history
  • Loading branch information
Slawomir Wieczorek committed Nov 29, 2024
1 parent 18ee882 commit 94e2d4f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
</div>
<div class="col-3" style="font-size: 0.6rem; margin-top: 0.4rem">
<span
*ngIf="pipeline.lastInstance.startDate">{{ pipeline.lastInstance.startDate * 1000 | date: 'dd.MM.yyyy HH:mm:ss' }}</span>
*ngIf="pipeline?.lastInstance?.startDate">{{ pipeline.lastInstance.startDate * 1000 | date: 'dd.MM.yyyy HH:mm:ss' }}</span>
</div>
<div [ngSwitch]="pipeline.lastInstance.state" class="col-1">
<div *ngIf="pipeline?.lastInstance" [ngSwitch]="pipeline.lastInstance.state" class="col-1">
<span *ngSwitchCase="'queued'" [pTooltip]="pipeline.lastInstance.state"
class="align-items-end pi pi-hourglass"
style="color: gray"></span>
Expand Down

0 comments on commit 94e2d4f

Please sign in to comment.