diff --git a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx index 2ac1f21fc3..7c8f86d7ff 100644 --- a/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx +++ b/awx/ui_next/src/screens/Inventory/InventorySources/InventorySourceListItem.jsx @@ -20,6 +20,7 @@ import styled from 'styled-components'; import StatusIcon from '../../../components/StatusIcon'; import InventorySourceSyncButton from '../shared/InventorySourceSyncButton'; +import { formatDateString } from '../../../util/dates'; const ExclamationTriangleIcon = styled(PFExclamationTriangleIcon)` color: var(--pf-global--warning-color--100); @@ -46,7 +47,7 @@ function InventorySourceListItem({ {job.finished && (
- {t`FINISHED:`} {job.finished} + {t`FINISHED:`} {formatDateString(job.finished)}
)}