Closed mdouet421 closed 1 year ago
It seems that DataList is always visible, even with isVisible={{ base: false, md: true }}
isVisible={{ base: false, md: true }}
The problem comes from the component dataListRow, where the d={!showRow ? 'none' : undefined} should be replace by display={!showRow ? 'none' : undefined}
d={!showRow ? 'none' : undefined}
display={!showRow ? 'none' : undefined}
It seems that DataList is always visible, even with
isVisible={{ base: false, md: true }}
The problem comes from the component dataListRow, where the
d={!showRow ? 'none' : undefined}
should be replace bydisplay={!showRow ? 'none' : undefined}