diff --git a/desktop/flipper-plugin/src/ui/data-inspector/DataInspectorNode.tsx b/desktop/flipper-plugin/src/ui/data-inspector/DataInspectorNode.tsx index cc61f2421..6e2c96b79 100644 --- a/desktop/flipper-plugin/src/ui/data-inspector/DataInspectorNode.tsx +++ b/desktop/flipper-plugin/src/ui/data-inspector/DataInspectorNode.tsx @@ -43,6 +43,7 @@ const BaseContainer = styled.div<{depth?: number; disabled?: boolean}>( margin: props.depth === 0 ? '7.5px 0' : '0', paddingLeft: 10, userSelect: 'text', + width: '100%', }), ); BaseContainer.displayName = 'DataInspector:BaseContainer'; @@ -606,19 +607,19 @@ export const DataInspectorNode: React.FC = memo( } return ( - - + + {expandedPaths && {expandGlyph}} {descriptionOrPreview} {wrapperStart} - - {propertyNodesContainer} - {wrapperEnd} - + {propertyNodesContainer} + {wrapperEnd} + + ); }, dataInspectorPropsAreEqual,