Fixed broken timeline layout

Summary: Changelog: Fixed broken layout of timeline in QPL plugin

Reviewed By: passy

Differential Revision: D21383013

fbshipit-source-id: 95fbe2681ff27dff827c742f11192c1d07ad021c
This commit is contained in:
Michel Weststrate
2020-05-05 04:04:55 -07:00
committed by Facebook GitHub Bot
parent 877e0816b8
commit 655d856d1c
2 changed files with 3 additions and 2 deletions

View File

@@ -151,6 +151,7 @@ type ManagedTableState = {
const Container = styled(FlexColumn)<{canOverflow?: boolean}>((props) => ({
overflow: props.canOverflow ? 'scroll' : 'visible',
flexGrow: 1,
height: '100%',
}));
Container.displayName = 'ManagedTable:Container';