Each record in table should have a unique `key` prop,or set `rowKey` to an unique primary key
Just add a unique key value in tag link this: <Table columns={columns} dataSource={this.state.data} rowKey=”Id” /> // unique key Hope this help
Just add a unique key value in tag link this: <Table columns={columns} dataSource={this.state.data} rowKey=”Id” /> // unique key Hope this help
[Updated] I’m not sure what you exactly want to do. But according to the doc. You can customize your footer by using the attribute footer for Modal. According to the updated document (Aug 31, 2021), we only need to use footer={null} and don’t have to use footer={null, null} anymore. Here is the sample: https://codepen.io/andretw/pen/RwbBYpb <Modal … Read more
UPD: the underlying issue seems to be resolved for the new (4.0) version of antd. Therefore, if you try to resolve this issue for the earlier versions, the recommended way is to migrate onto antd 4 Previous answer: At the moment, a huge part of antd dist is SVG icons. There is no official way … Read more
You can use localeCompare() sorter: (a, b) => a.first_name.localeCompare(b.first_name);
According to a Twitter post by Ant Design: Ant Design GitHub reprository disppears without known reason, we are looking into it and seeking recover help from @github @GitHubHelp https://twitter.com/AntDesignUI/status/1361150625505927168 PD: I’m also the mantainer