Rate this page:
The IssueActivity
component renders content in the Activity panel in a Jira issue.
IssueActivity
is the top-level component required for the jira:issueActivity
module..
This module can be used in Jira Core, Jira Software, and Jira Service Desk. It works in the new issue view but not the old issue view.
1
import ForgeUI, { IssueActivity } from '@forge/ui';
Name | Type | Required | Description |
---|---|---|---|
children | Array<ForgeComponent> | Yes | A container for displaying multiple components. Can contain any UI kit component. |
A hello world example of the issue activity.
1 2 3 4 5 6 7 8 9 10 11
import ForgeUI, { render, IssueActivity, Text } from "@forge/ui";
const App = () => {
return <Text>Hello from the Issue activity!</Text>;
};
export const run = render(
<IssueActivity>
<App />
</IssueActivity>
);
Rate this page: