Skip to main content
Version: Next

InspectEntityDialog()

Home > @backstage/plugin-catalog-react > InspectEntityDialog

A dialog that lets users inspect the low level details of their entities.

Signature:

function InspectEntityDialog(props: {
open: boolean;
entity: Entity;
initialTab?: 'overview' | 'ancestry' | 'colocated' | 'json' | 'yaml';
onClose: () => void;
onSelect?: (tab: string) => void;
}): React.JSX.Element | null;

Parameters

Parameter

Type

Description

props

{ open: boolean; entity: Entity; initialTab?: 'overview' | 'ancestry' | 'colocated' | 'json' | 'yaml'; onClose: () => void; onSelect?: (tab: string) => void; }

**Returns:**

React.JSX.Element | null