Improve open in ide functionality for bloks

Summary:
A few enhancements:
1. we use the component name when using big grep search and looking up in codehub instead of big grep search
2. diffusion renamed to code hub

Differential Revision: D46934805

fbshipit-source-id: c818b2937256cbeaabfdfc0a191706ebdecb716b
This commit is contained in:
Luke De Feo
2023-06-22 08:24:55 -07:00
committed by Facebook GitHub Bot
parent 80673f7832
commit a24934cad2
2 changed files with 2 additions and 0 deletions

View File

@@ -42,6 +42,7 @@ export const IdentityInspector: React.FC<Props> = ({node}) => {
</Row>
<CodeInspector
name={node.name}
qualifiedName={node.qualifiedName}
tags={node.tags}
androidId={node.inlineAttributes['id']}

View File

@@ -11,6 +11,7 @@ import React from 'react';
import {Tag} from '../../../../types';
type CodeInspectorProps = {
name: string;
tags: Tag[];
qualifiedName: string;
lineNumber?: number;