Rate this page:
A selectable field in the right panel of a Jira issue, which shows/hides content.
IssueGlance
is the top-level component required for the jira:issueGlance
module.
Can be used in Jira Work Management, Jira Software, and Jira Service Management new issue view.
1 2import ForgeUI, { IssueGlance } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for displaying multiple components. Can contain any UI kit component. |
1 2import ForgeUI, { render, IssueGlance, Text } from "@forge/ui"; const App = () => { return <Text>Hello from the Issue glance!</Text>; }; export const run = render( <IssueGlance> <App /> </IssueGlance> );
Rate this page: