Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
noctillion committed Nov 20, 2023
1 parent a6e6fe3 commit 89eb3d5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/js/components/Overview/LastIngestion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ const LastIngestionInfo: React.FC = () => {
queryableDataTypes.map((dataType: LastIngestionDataTypeResponse) => (
<Card key={dataType.id}>
<Space direction="vertical">
<Typography.Text style={{ color: 'rgba(0,0,0,0.45)' }}>{t(getDataTypeLabel(dataType.id))}</Typography.Text>
<Typography.Text style={{ color: 'rgba(0,0,0,0.45)' }}>
{t(getDataTypeLabel(dataType.id))}
</Typography.Text>
<Typography.Text>
<CalendarOutlined /> {dataType.last_ingested ? formatDate(dataType.last_ingested) : 'Not Available'}
</Typography.Text>
Expand Down

0 comments on commit 89eb3d5

Please sign in to comment.