Hello
After upgrading to v 2.0.6 I have also noticed a js error on all pages loading lists with sorting
It seems like popover and tooltip are not properly initialized by Helix and we get js errors stating that they are not function.
That's this bit of js which is the issue :
jQuery(function($){ initPopovers(); $("body").on("subform-row-add", initPopovers); function initPopovers (event, container) { $(container || document).find(".hasPopover").popover({"html": true,"trigger": "hover focus","container": "body"});} });
jQuery(function($){ initTooltips(); $("body").on("subform-row-add", initTooltips); function initTooltips (event, container) { container = container || document;$(container).find(".hasTooltip").tooltip({"html": true,"container": "body"});} });
That was correct on previous version but the use of Bootstrap 5 needs probably a rewrite somewhere which is missing.
Mind to check on your side ? use joomla 3 with a list display like
JHtml::_('grid.sort', 'BLABLA', 'priority', $listDirn, $listOrder, 'none')
Thanks