We tried in firefox, chrome, and chromium and the '''ul''' tags disappear from stats.html (under widgets/templates/stats.html) when rendered. this is why that annoying bullet shows up - the ul has a css class attached that should remove the bullets, but since it's not getting rendered, the ugly bullet rears its head!
first theory was maybe invalid html somewhere, but i've combed thru the relevant templates, tried to reorder the right side widgets to see if it changed anything - but the html in the templates looks fine, and reordering didn't change anything. if you view the stats widget individually by clicking on the full screen icon, it still doesn't render the ul.
maybe this is a flask/jinja issue??
this screenshot hopefully makes the issue clear: http://i.imgur.com/77Kfy1Q.png
Doesn't seem to affect all pages, eg the UL is getting rendered on this promoted team hub (designteam): http://i.imgur.com/ZiFLtVv.png
Well, looking at the file it seems the <ul> is actually missing: https://pagure.io/fedora-hubs/blob/develop/f/hubs/widgets/templates/fedmsgstats.html
<ul>
I'm testing w/ it to see if that does fix the UI properly
@pingou lol we were looking at stats.html yesterday and i was messing that file up to see if any changes would show and nothing happend :facepalm:
stats.html
Looks like just adding the <ul> isn't enough to make the dot disapear
@pingou
<ul class="list-unstyled">
Yup I had just found it, thanks! :)
Fixed in https://pagure.io/fedora-hubs/pull-request/247
@skrzepto changed the status to Fixed
Fixed