<?php usort($tagList, function ($a, $b) { return strcmp($a->title, $b->title); }); ?>
ok, I created an override of the module an added after line 16 <?php usort($tagList, function ($a, $b) { return strcmp($a->title, $b->title); }); ?> All tags are sorted alphabetically. Maybe you can use this, or improve it
Please publish modules in sidebar position.