ImagesTable: show detailed time when hovering over the "Updated" column
This commit is contained in:
parent
baf58829eb
commit
c1d6053083
2 changed files with 27 additions and 1 deletions
|
|
@ -66,6 +66,7 @@ import { resolveRelPath } from '../../Utilities/path';
|
|||
import {
|
||||
computeHoursToExpiration,
|
||||
timestampToDisplayString,
|
||||
timestampToDisplayStringDetailed,
|
||||
} from '../../Utilities/time';
|
||||
import { useExperimentalFlag } from '../../Utilities/useExperimentalFlag';
|
||||
|
||||
|
|
@ -469,7 +470,10 @@ const Row = ({
|
|||
}}
|
||||
/>
|
||||
<Td dataLabel="Image name">{compose.image_name || compose.id}</Td>
|
||||
<Td dataLabel="Created">
|
||||
<Td
|
||||
dataLabel="Created"
|
||||
title={timestampToDisplayStringDetailed(compose.created_at)}
|
||||
>
|
||||
{timestampToDisplayString(compose.created_at)}
|
||||
</Td>
|
||||
<Td dataLabel="Release">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue