mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 18:25:56 +01:00
Fix tag-retention nightly fuilure (#13965)
Signed-off-by: AllForNothing <sshijun@vmware.com>
This commit is contained in:
parent
26a87c1fcc
commit
7abe2ad9a3
@ -137,7 +137,7 @@
|
||||
<clr-dg-row *ngFor="let task of historyList" [clrDgItem]="task">
|
||||
<clr-dg-cell>{{task.repository}}</clr-dg-cell>
|
||||
<clr-dg-cell>{{task.status}}</clr-dg-cell>
|
||||
<clr-dg-cell>{{task.retained}}/{{task.total}}</clr-dg-cell>
|
||||
<clr-dg-cell>{{task?.retained?task?.retained:0}}/{{task?.total?task?.total:0}}</clr-dg-cell>
|
||||
<clr-dg-cell>{{task.start_time|date:'medium'}}</clr-dg-cell>
|
||||
<clr-dg-cell>{{task.duration}}</clr-dg-cell>
|
||||
<clr-dg-cell><span (click)="seeLog(task.execution_id,task.id)"
|
||||
|
@ -17,9 +17,6 @@ import { AddRuleComponent } from "./add-rule/add-rule.component";
|
||||
import {ClrDatagridStateInterface, ClrDatagridStringFilterInterface} from "@clr/angular";
|
||||
import { TagRetentionService } from "./tag-retention.service";
|
||||
import { Retention, Rule } from "./retention";
|
||||
|
||||
import { Project } from "../../project";
|
||||
|
||||
import { finalize } from "rxjs/operators";
|
||||
import { CronScheduleComponent } from "../../../../lib/components/cron-schedule";
|
||||
import { ErrorHandler } from "../../../../lib/utils/error-handler";
|
||||
|
Loading…
Reference in New Issue
Block a user