fix: update backup display name in snapshots table
This commit is contained in:
parent
f952532290
commit
e992c6739a
1 changed files with 1 additions and 1 deletions
|
|
@ -108,7 +108,7 @@ export const SnapshotsTable = ({ snapshots, repositoryName, backups }: Props) =>
|
||||||
onClick={(e) => e.stopPropagation()}
|
onClick={(e) => e.stopPropagation()}
|
||||||
className="hover:underline"
|
className="hover:underline"
|
||||||
>
|
>
|
||||||
<span className="text-sm">{backup ? backup.id : "-"}</span>
|
<span className="text-sm">{backup ? backup.name : "-"}</span>
|
||||||
</Link>
|
</Link>
|
||||||
<span hidden={!!backup} className="text-sm text-muted-foreground">
|
<span hidden={!!backup} className="text-sm text-muted-foreground">
|
||||||
-
|
-
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue