then-purpleT
Refine2y ago
4 replies
then-purple

list table ellipsis

I have a table on ant design with this code
<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>

the ellipsis prop doesn't work.. am I missing something?
Was this page helpful?