Is it possible to change or control the "title" field in Forge app UI?

I’m working on a Forge application with custom UI, and I’ve noticed that the title field in the manifest.yml file is a required field. This title appears in the JIRA when I render the app.
I was wondering if there’s a way to dynamically control or change the title that is shown in the UI after the app is deployed? For example, can the title be customized or changed or removed programmatically based on different conditions, or is it fixed to what is defined in the manifest?
Any insights or suggestions on this would be greatly appreciated!

I don’t believe so. It’s static from my experience.

Once deployed, the “title” is “static”, meaning you cannot change its configuration afterward. However, you can use environment variables to set a different “title” for each environment during deployment. Keep in mind that these variables must be configured prior to deployment, as changes afterward will not take effect.

Hi @AnamikaSoni ,

You can add layout: blank along with title to the jira modules in forge. It will give a complete blank page to you.
If this approach works for you, please mark it as solution.

2 Likes

Thanks @JeevanKarnati_Trundl , This solution worked!