Commit c12aa7fd by archer

fix: 文本长度过长

parent e08e8aa0
......@@ -166,13 +166,19 @@ const ModelDataCard = ({ model }: { model: ModelSchema }) => {
<Tbody>
{modelDataList.map((item) => (
<Tr key={item.id}>
<Td>
<Box fontSize={'xs'} w={'100%'} whiteSpace={'pre-wrap'}>
<Td minW={'200px'}>
<Box fontSize={'xs'} whiteSpace={'pre-wrap'}>
{item.q}
</Box>
</Td>
<Td minW={'200px'}>
<Box w={'100%'} fontSize={'xs'} whiteSpace={'pre-wrap'}>
<Box
w={'100%'}
fontSize={'xs'}
whiteSpace={'pre-wrap'}
maxH={'250px'}
overflowY={'auto'}
>
{item.text}
</Box>
</Td>
......
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