fix(striker-ui): hide node description if too long

main
Tsu-ba-me 1 year ago
parent 3e27af973b
commit a21d0a9881
  1. 6
      striker-ui/components/Anvils/AnvilSummaryList.tsx

@ -38,7 +38,11 @@ const AnvilSummaryList: FC = () => {
children: (
<InnerPanel>
<InnerPanelHeader>
<BodyText>
<BodyText
overflow="hidden"
textOverflow="ellipsis"
whiteSpace="nowrap"
>
{name}: {description}
</BodyText>
</InnerPanelHeader>

Loading…
Cancel
Save