Skip to content

Commit 2a715c0

Browse files
committed
validation report updated
1 parent 61ad1aa commit 2a715c0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web-app/src/app/screens/Feed/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ export default function Feed(): React.ReactElement {
422422
/>
423423
)}
424424
<Box>
425-
{latestDataset?.downloaded_at != undefined && (
425+
{latestDataset?.validation_report?.validated_at != undefined && (
426426
<>
427427
<Typography
428428
data-testid='last-updated'
@@ -431,7 +431,7 @@ export default function Feed(): React.ReactElement {
431431
component={'div'}
432432
>
433433
{`${t('qualityReportUpdated')}: ${new Date(
434-
latestDataset.downloaded_at,
434+
latestDataset.validation_report.validated_at,
435435
).toDateString()}`}
436436
</Typography>
437437
{/* TODO: add timestamp for badge verify */}

0 commit comments

Comments
 (0)