We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61ad1aa commit 2a715c0Copy full SHA for 2a715c0
web-app/src/app/screens/Feed/index.tsx
@@ -422,7 +422,7 @@ export default function Feed(): React.ReactElement {
422
/>
423
)}
424
<Box>
425
- {latestDataset?.downloaded_at != undefined && (
+ {latestDataset?.validation_report?.validated_at != undefined && (
426
<>
427
<Typography
428
data-testid='last-updated'
@@ -431,7 +431,7 @@ export default function Feed(): React.ReactElement {
431
component={'div'}
432
>
433
{`${t('qualityReportUpdated')}: ${new Date(
434
- latestDataset.downloaded_at,
+ latestDataset.validation_report.validated_at,
435
).toDateString()}`}
436
</Typography>
437
{/* TODO: add timestamp for badge verify */}
0 commit comments