Remove scrolls for tables
This commit is contained in:
parent
fa0cb0a802
commit
d01c94bae6
|
@ -54,7 +54,7 @@ const DevCallTable = ({ devCallData }) => {
|
|||
window.open(currentEvent.url, "_blank")
|
||||
};
|
||||
|
||||
return <Table dataSource={devCallData} columns={tableColumns} pagination={false} scroll={{ y: 400 }}/>;
|
||||
return <Table dataSource={devCallData} columns={tableColumns} pagination={false}/>;
|
||||
};
|
||||
|
||||
export { DevCallTable };
|
||||
|
|
|
@ -56,7 +56,7 @@ const TownhallTable = ({ townhallData }) => {
|
|||
window.open(currentEvent.url, "_blank")
|
||||
};
|
||||
|
||||
return <Table dataSource={townhallData} columns={tableColumns} pagination={false} scroll={{ y: 400 }}/>;
|
||||
return <Table dataSource={townhallData} columns={tableColumns} pagination={false}/>;
|
||||
};
|
||||
|
||||
export { TownhallTable };
|
||||
|
|
Loading…
Reference in New Issue