Remove id from Inspector

Summary: This is internal to ui-debugger so there's no need to surface this information to users.

Reviewed By: ivanmisuno

Differential Revision: D43081188

fbshipit-source-id: f6abdeb7828a1709d2590cf2a10407baec645420
This commit is contained in:
Lorenzo Blasa
2023-02-07 07:16:20 -08:00
committed by Facebook GitHub Bot
parent e9c0a459dd
commit 9c9cd91832

View File

@@ -50,14 +50,6 @@ export const IdentityInspector: React.FC<Props> = ({node}) => {
</IdentityValue> </IdentityValue>
</Col> </Col>
</Row> </Row>
<Row gutter={4}>
<Col span="10">
<IdentityKey>Id:</IdentityKey>
</Col>
<Col span="14">
<IdentityValue title={node.id.toString()}>{node.id}</IdentityValue>
</Col>
</Row>
<CodeInspector name={node.qualifiedName} tags={node.tags} /> <CodeInspector name={node.qualifiedName} tags={node.tags} />
</IdentityContainer> </IdentityContainer>
); );