- Affected version
- 2.3 Beta 1
You probably know the tabs, often appearing like this in code
Now here's a new weird behaviour: let's say you click on one of the tabPanes (li) and load the associated template with it. For some reason.. the parent element of said template disappears. I noticed this when pressing a submit button inside a form (which was the top element in my template) and nothing happening - only to see that the form never appeared despite the rest of the template loading with no issues.
FWIW, this can be solved by wrapping your content inside div-tags or whatever, but I assume this is a bug?
Cheers!
HTML:
<ul class="tabPanes">
<li data-href="{{ link('...') }}" role="tabpanel" aria-labelledby="details">
<div class="blockMessage">{{ phrase('loading...') }}</div>
</li>
</ul>
Now here's a new weird behaviour: let's say you click on one of the tabPanes (li) and load the associated template with it. For some reason.. the parent element of said template disappears. I noticed this when pressing a submit button inside a form (which was the top element in my template) and nothing happening - only to see that the form never appeared despite the rest of the template loading with no issues.
FWIW, this can be solved by wrapping your content inside div-tags or whatever, but I assume this is a bug?
Cheers!