rusackas commented on issue #40428: URL: https://github.com/apache/superset/issues/40428#issuecomment-5220514624
@RehanIslam09 dug into this a bit. Each chart holder's height in `ResizableContainer` is a fixed px value off the stored layout (`heightStep * heightMultiple`), not `fit-content`, so `overflow: visible` on the table paints outside that box without growing it or the row. That's why it overlaps instead of reflowing. A real fix probably means resizing the container to the table's expanded `scrollHeight` inside the clone, not just toggling overflow on the inner elements. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
