To make the leaderboard visible in the new style
switch out line 1184
$('section.progression').after(leaderboardTableStyle);
with
if ($('section.progression').length) {
$('section.progression').after(leaderboardTableStyle);
}
else {
$('section.srs-progress').after(leaderboardTableStyle);
}
this update will work for both the current and new style dashboard.
9 Likes