fix colors

This commit is contained in:
Zhora Shalyapin 2025-04-01 15:08:46 +00:00
parent f3534eb17e
commit 49a3d4d493

View File

@ -2485,7 +2485,7 @@
let category = points[getCpNumberFromOption(option)].categories.find(category => category.cat_id === catId)
if (category && category.pivot.bonus_time == "0") {
let stage = parseInt(category.pivot.stage)
option.style['background-color'] = stageColors[stage % stageColors.length - 1]
option.style['background-color'] = stageColors[(stage - 1) % stageColors.length]
}
}
})()