Commit 527237d0 by heheer Committed by GitHub

limit custom param description width in http tools (#6116)

parent 44c0e9e8
......@@ -664,7 +664,9 @@ const CustomParamsTable = ({
{list.map((item, index) => (
<Tr key={index} h={8}>
<Td px={2}>{item.key}</Td>
<Td px={2}>{item.description}</Td>
<Td px={2} maxW={40} textOverflow={'ellipsis'} overflow={'hidden'}>
{item.description}
</Td>
<Td px={2}>{item.type}</Td>
<Td px={2}>{item.isTool ? t('common:yes') : t('common:no')}</Td>
<Td px={2}>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment