How can I show multiple Custom UI admin pages under one section in Jira Admin?

I’ve created a Custom UI admin page successfully by defining a resource in manifest.yml (and not using sections in jira:adminPage).
This gives me one menu item under “APPS”, which opens my Custom UI page correctly.

Now I have two different React apps (two resources) — each works fine as a separate admin page.

What I’d like is to group them under a single section like:

My App
 ├─ Page One
 └─ Page Two

Is there a way to do this in the manifest (maybe using sections or a parent module)?

Would love to know if anyone has achieved this or has a sample setup!

Hi @AbhishekJoshi

You can’t do nested / grouped menu items in Forge admin pages.

Each jira:adminPage entry is always flat under “Apps”. There is no parent module or section that creates sub-pages.

One workaround is to have one AdminPage, and inside it, you create your own navigation.

1 Like

Checkout module doc:

For Custom UI you can use sub-pages.

2 Likes