Skip to content

Commit

Permalink
fix(admin-ui): Correctly display job retries
Browse files Browse the repository at this point in the history
Closes #1467
  • Loading branch information
michaelbromley committed Sep 26, 2023
1 parent 972ba0e commit d3107fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<vdr-job-state-label [job]="job"></vdr-job-state-label>
<div *ngIf="job.state === 'FAILED'" class="retry-info">after {{ job.attempts }} attempts</div>
<div *ngIf="job.state === 'RUNNING' || job.state === 'RETRYING'" class="retry-info">
attempting {{ job.attempts }} of {{ job.retries }}
attempting {{ job.attempts }} of {{ job.retries + 1 }}
</div>
</ng-template>
</vdr-dt2-column>
Expand Down

0 comments on commit d3107fd

Please sign in to comment.