1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: move paginated table into isolation context (#5694)

This commit is contained in:
Mateusz Kwasniewski 2023-12-20 10:47:22 +01:00 committed by GitHub
parent 53eb1f6b92
commit 7be0c55d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -45,6 +45,7 @@ const HeaderCell = <T extends object>(header: Header<T, unknown>) => {
const TableContainer = styled('div')(({ theme }) => ({ const TableContainer = styled('div')(({ theme }) => ({
overflowX: 'auto', overflowX: 'auto',
isolation: 'isolate',
})); }));
/** /**