Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(table): prevent rendering rows with very short height
The table component dynamically adds inline styles such as `height` to its rows and cells. The height is added in `px`, and is calculated based on the content of the cells. In some scenarios where the cells have no content or hold web-components that load with delay, after the table is rendered, the dynamic inlined `height` styles used to be calculated very strangely, causing the rows and cells to be very short height. This change will prevent these things, by applying a proper default `min-height`.
- Loading branch information