Describe the bug
When trying to have a table fit within a flexible area, providing a string of 'x%' makes the table expand to its full height
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Table should render to max height of percentage of parent
Desktop (please complete the following information):
** maybe due to overflowY set to auto?
Hi @blackbadgerltd ,
Actually this is not a bug. % height could not be applied cause of parent component that is not specified a height.
Trick: You can use maxBodyHeight: '80vh' :)
maxBodyHeight:'calc(100vh - 190px)' try this (190 is for example you can change based on your requirement)
Most helpful comment
maxBodyHeight:'calc(100vh - 190px)' try this (190 is for example you can change based on your requirement)