Text tidying

This commit is contained in:
phil.borman@gmail.com 2025-08-09 10:00:19 +02:00
parent 1f8fd2f09d
commit caf76e1d73

View File

@ -155,7 +155,7 @@
arr.forEach(function (item, index) {
genres = genres + ' <a href=\'magazines?mag_filter=' + item.trim() + '\'">' + item.trim() + '</a>';
});
btn = btn + '<br><i><small>[' + genres + ']</i></small>'
btn = btn + '<br><i><small>[' + genres.trim() + ']</i></small>'
}
return btn
;} },