Skip to content

Commit

Permalink
large info should never be empty (weaveworks#3879)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshri authored Jul 25, 2023
1 parent 1356e22 commit f5c62ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/LargeInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function LargeInfo({ className, title, info, component }: Props) {
</Text>
<Tooltip title={info || ""} placement="top">
<Text size="large" color="neutral40">
{component ? component : info || ""}
{component ? component : info || "-"}
</Text>
</Tooltip>
</Flex>
Expand Down

0 comments on commit f5c62ef

Please sign in to comment.