Jira server version: 7.12.3
Compatible AUI version: 7.9.9
Hey, I have been developing a Jira server plugin and since the information that I need to show has started to grow a lot I decided to use the AUI tabs and came across this problem.
To test the tabs i used the example in the docs:
<div class="mod-content">
<div class="aui-tabs horizontal-tabs">
<ul class="tabs-menu">
<li class="menu-item active-tab">
<a id="first-panel" href="#tabs-example-first">Tab 1</a>
</li>
<li class="menu-item">
<a id="second-panel" href="#tabs-example-second">Tab 2</a>
</li>
</ul>
<div class="tabs-pane active-pane" id="tabs-example-first">
<h2>This is tab 1</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
<div class="tabs-pane" id="tabs-example-second">
<h2>This is tab 2</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
</div>
</div>
</div>
When opening the issue page (jira/browse/CD-38) everything works perfectly.
But when I try to open the same issue from the project queues view (jira/projects/CD/queues/custom/1/CD-38) the tab doesn’t allow me to change to another tab and changes the URL to url#[tab-id].
I think the problem here is the href that I’m referring to the tab. In the project queues view the issue is probably being loaded in a different way.
I have searched a lot before making this post and found nothing alike.
Thank you in advance.
Best regards,
António Melo