Confluence Global Page doesn't show title of the Global page module

Is there anyone to help take a look at this issue? Thanks.
Jira Global Page: Correct


Confluence Global Page: Incorrect

1 Like

Hello @YY1

Verify manifest.yml Configuration
Ensure the title property is correctly defined in your manifest.yml file.
modules:
confluence:globalPage:
- key: confluence-global-page
title: “My Confluence Global Page”
icon: “”
resource: your-resource-key
resources:

  • key: your-resource-key
    path: static

Option 2: Use Localization for Titles
i18n:

  • key: en
    path: static/i18n/en.json

en.json file
{
“confluence-global-page.title”: “My Confluence Global Page”
}

Update manifest.yml as like below:
modules:
confluence:globalPage:
- key: confluence-global-page
title: “i18n:confluence-global-page.title”

Thanks for your reply.
My code is as follows, I think it’s Option 1 as you suggested

  confluence:globalPage:
    - key: collaboration-champion-global-page
      resource: global-resource
      render: native
      resolver:
        function: global-resolver
      title: Collaboration Champion
      icon: https://cdn-icons-png.flaticon.com/512/7340/7340754.png
      route: collaboration-champion-global-page

The same code is good for jira, but not for Confluence. Very strange~

@YY1 Try with resizing the image icon 24*24.

Documentation:
https://developer.atlassian.com/platform/forge/ui-kit/components/icon/#:~:text=There%20are%20three%20icon%20sizes,of%20the%20icon%20shape%20itself.

Confirmed not working for confluence:globalPage:title
See and vote: https://ecosystem.atlassian.net/browse/FRGE-788

1 Like

@UlrichKuhnhardtIzym1 I think FRGE-788 is for the title attribute of the page, i.e., the page title that is displayed in the browser.

As per Confluence forge docs the confluence:globalpage:title attribute is for

The title of the global page, which is displayed at the top of the page.

  1. If I understand this correctly it does not refer to the HTML page title attribute (in the browser tab)
  2. The original post above illustrates the problem.
  3. There is no separate forge module attribute to specify the HTML page browser tab title.

Should I create a separate ticket for the reported problem?

I’m not sure if that’s a bug in the implementation or if it’s documented incorrectly.

The reason I think the linked issue is about the browser title is this part:

we noticed that the title on our globalPage is always “Confluence”

However, there are no titles at all on global pages. In any case, I hope the title isn’t just going to be added without an option to disable it, because it wouldn’t work well with the layout we are currently using in our apps.