Fix: overflow shorthand override warning
This commit is contained in:
parent
5fcde5ff44
commit
aab46b28c8
1 changed files with 5 additions and 1 deletions
|
|
@ -182,7 +182,11 @@ const DataTable = ({
|
||||||
{({ height }) => (
|
{({ height }) => (
|
||||||
<List
|
<List
|
||||||
// this has to be in a style because of how the component works
|
// this has to be in a style because of how the component works
|
||||||
style={{ overflow: 'inherit', outline: 'none' }}
|
style={{
|
||||||
|
overflowX: 'inherit',
|
||||||
|
overflowY: 'inherit',
|
||||||
|
outline: 'none'
|
||||||
|
}}
|
||||||
{...props}
|
{...props}
|
||||||
height={loading ? 0 : height}
|
height={loading ? 0 : height}
|
||||||
width={width}
|
width={width}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue