list table ellipsis
I have a table on ant design with this code
the ellipsis prop doesn't work.. am I missing something?
the ellipsis prop doesn't work.. am I missing something?
<List>
<Table {...tableProps} rowKey="id">
<Table.Column dataIndex="name" title="Nom" />
<Table.Column dataIndex="address" title="Adresse" ellipsis={true} />
<Table.Column dataIndex="description" title="Description" ellipsis={true} />
</Table>
</List>