Skip to content

Commit

Permalink
fix: 🐛 add killed display
Browse files Browse the repository at this point in the history
  • Loading branch information
chef-ryan committed Feb 14, 2025
1 parent 41f0793 commit 7bf7afe
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,15 @@ export function GaugeIdentifierDetails({ data }: ListItemProps) {
</Text>
</Flex>
) : null}
{data.killed && (
<span
style={{
color: '#FFB237',
}}
>
deleted
</span>
)}
</Flex>
</FlexGap>
<FlexGap gap="0.25em" justifyContent="flex-end" flexWrap="wrap" style={{ flex: 1 }}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,15 @@ export const TableRow: React.FC<RowProps> = ({ data, submitted, vote = { ...DEFA
</Text>
</Flex>
) : null}
{data.killed && (
<span
style={{
color: '#FFB237',
}}
>
deleted
</span>
)}
</Flex>
</FlexGap>

Expand Down

0 comments on commit 7bf7afe

Please sign in to comment.