mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
limit custom param description width in http tools (#6116)
This commit is contained in:
parent
44c0e9e83f
commit
527237d019
|
|
@ -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}>
|
||||
|
|
|
|||
Loading…
Reference in New Issue