This commit is contained in:
miguel angel rasteu 2023-10-11 16:16:22 +02:00
parent f8c99c6ada
commit c9966ed999
1 changed files with 2 additions and 1 deletions

View File

@ -134,8 +134,9 @@ function render_counter() {
$(".counter-tips img:eq(0)").after(
"<span class='count-round-tip active'></span>"
);
var limitRound = totalTips > 28 ? 28 : totalTips;
if (totalTips > 1) {
for (let i = 1; i <= totalTips - 1; i++) {
for (let i = 1; i <= limitRound - 1; i++) {
$(".count-round-tip:eq(0)").after(
"<span class='count-round-tip'></span>"
);