From cb8d091d0a44e04559f6e09e83a13f1a34efdfb5 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Sun, 1 Feb 2026 14:16:58 +0100 Subject: [PATCH] tag round id in list --- resources/js/components/rounds/Item.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- 2.47.3