pro-components
pro-components copied to clipboard
🐛[BUG]protable 设置 tooltip 偶发 2 个tooltip
"antd": "~5.12.7",
"@ant-design/pro-components": "~2.6.44",
{
title: '描述',
dataIndex: 'description',
width: 180,
ellipsis: false,
renderText(description) {
return <Paragraph ellipsis={{ rows: 1, tooltip: true }}>{description}</Paragraph>;
},
},
<ProTable
rowKey="id"
search={false}
loading={loading}
dataSource={fileList}
columns={columns}
pagination={{ total: data?.total, current: current, pageSizeOptions: [20, 50, 100] }}
onChange={onPageChange}
options={{ reload: refresh }}
scroll={{ x: 1000 }}
/>
是的,这个问题经常出现,ProTable、CheckCard 都有
是的,这个问题经常出现,ProTable、CheckCard 都有
现在有什么方式可以先让它不出现吗😭