On the problem of rowSelection check in Table antd

Table plus rowSelection check this attribute, in the case of 360 browser, dozens of data on the table scrolling up and down with the mouse has obvious delay stutter phenomenon, click check, it takes two or three seconds to respond, after the rowSelection attribute is removed, the table data scrolls up and down again to normal, without any stutter. Google browser is normal. At present, it is found that 360th has this problem with IE browser. Is there a big god who encountered this problem? how to solve it?

onSelectChange = (selectedRowKeys, selectedRows) => {
    this.setState({ selectedRowKeys,selectedRows });
  }
render() {
    const { selectedRowKeys } = this.state;
    const rowSelection = {
      selectedRowKeys,
      onChange: this.onSelectChange
    };
    <Table rowSelection={dataSource.length?rowSelection:null} loading={loading} onRowClick={this.onRowClick} rowKey={(record, index) => index} dataSource={dataSource} columns={columns} pagination={false} scroll={{x: 1000, y: 500}} />
}

          
Nov.26,2021

dataSource.length?rowSelection:null

Why add this line

Menu