Creating report plugin - how to display report name in the reports menu?

Hi,

I’m developing a report plugin for Jira cloud.

The report is being displayed among the Reports but there is no menu item for the report.

My atlassian-connect.json file contents:

{
   "name":"Hello World",
   "description":"Atlassian Connect app",
   "key":"com.myorganization.helloworld",
   "baseUrl":"https://578f8065.ngrok.io/",
   "scopes":[
      "read",
      "write"
   ],
   "vendor":{
      "name":"MyOrganisation",
      "url":"http://www.myorganization.com"
   },
   "authentication":{
      "type":"none"
   },
   "apiVersion":1,
   "modules":{
      "jiraReports":[
         {
            "url":"/helloworld.html",
            "description":{
               "value":"This is a hello world report"
            },
            "reportCategory":"agile",
            "thumbnailUrl":"assets/hello_world.png",
            "name":{
               "value":"Hello World Report"
            },
            "key":"hello-world"
         }
      ]
   }
}

This is how my report (Hello World) is displayed:

It is displayed last in the Agile reports list.
But there is no ‘Hello World’ option in the AGILE reports menu list on the left.

What am I missing? Do I have to add another module section into atlassian-connect.json to add the Report to the menu?

Thank you for any help.

Kind regards,
Lidija