Skip to content

Commit

Permalink
fix: Correct display of HoverCard data in the timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
antonko committed Mar 30, 2024
1 parent d13127a commit 25c2071
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frontend/src/components/timeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,19 +42,19 @@ export const TimeLine = observer(() => {
<Divider size={1} />
<Group p={0} m={0} justify="space-between">
<Text>Total created:</Text>
<Text>1</Text>
<Text>{item.total_created}</Text>
</Group>
<Group justify="space-between">
<Text>Total completed:</Text>
<Text>3</Text>
<Text>{item.total_completed_successfully}</Text>
</Group>
<Group justify="space-between">
<Text>Total failed:</Text>
<Text>1</Text>
<Text>{item.total_failed}</Text>
</Group>
<Group justify="space-between">
<Text>Total in progress:</Text>
<Text>11</Text>
<Text>{item.total_in_progress}</Text>
</Group>
</Stack>
</HoverCard.Dropdown>
Expand Down

0 comments on commit 25c2071

Please sign in to comment.