From: Daniel Karbach Date: Sun, 1 Feb 2026 13:16:58 +0000 (+0100) Subject: tag round id in list X-Git-Url: https://git.localhorst.tv/?a=commitdiff_plain;h=cb8d091d0a44e04559f6e09e83a13f1a34efdfb5;p=alttp.git tag round id in list --- diff --git a/resources/js/components/rounds/Item.jsx b/resources/js/components/rounds/Item.jsx index b37b34b..b2e26ce 100644 --- a/resources/js/components/rounds/Item.jsx +++ b/resources/js/components/rounds/Item.jsx @@ -28,7 +28,7 @@ import { hasFinishedRound } from '../../helpers/User'; import { useUser } from '../../hooks/user'; const getClassName = (round, tournament, user) => { - const classNames = ['round']; + const classNames = ['round', `round-${round?.id}`]; if (round.locked) { classNames.push('is-locked'); } else {