-
Type:
Bug
-
Resolution: Won't Fix
-
Priority:
Low
-
Component/s: Board (Company) - View
-
Severity 3 - Minor
Issue Summary
With "Enhanced board view" enabled. The first time a connect app webPanel is loaded. It doesn't fully render within the browser window.
About half of it is outside the visible window. This only happens the first time (after app installation) the webpanel is loaded. Successively opening the webpanel works as expected with the full panel visible.
Steps to Reproduce
- create a connect app. with ACSB
mvn archetype:generate -DarchetypeGroupId=com.atlassian.connect -DarchetypeArtifactId=atlassian-connect-spring-boot-archetype -DarchetypeVersion=3.0.9
- Add a webPanels module in manifest.yml
"modules": { "webSections": [ { "key": "board-links", "location": "jira.agile.board.tools", "weight": 10, "name": { "value": "My board app" } } ], "webPanels": [ { "key": "my-web-panel", "url": "/helloworld2.html", "location": "board-links", "name": { "value": "My Web Panel" }, "layout": { "width": "445px", "height": "260px" } } ] }
- Add helloworld2.html to src/main/resources/static
<!DOCTYPE html> <html lang="en"> <head> <script src="https://connect-cdn.atl-paas.net/all.js" data-options="sizeToParent:true;"></script> <link rel="stylesheet" href="https://unpkg.com/@atlaskit/css-reset@2.0.0/dist/bundle.css" media="all"> </head> <body> <section id="content" class="ac-content"> <h1 style="width: 445px;height: 260px">Hello World 2</h1> </section> </body> </html>
- Install the connect app
- load it for the first time in a Jira board (With "Enhanced board view" enabled)
Expected Results
The webpanel should be fully visible in the browser window.
Actual Results
The webpanel is partially visible, with about 50% of the window outside the visible window.

Workaround
This only happens the very first time a webpanel is opened. Closing and opening the webpanel will render it properly the next time.