From 41edd40cd580e2f1f74f5e040804693abed45aa9 Mon Sep 17 00:00:00 2001 From: luxick Date: Sat, 25 Jul 2026 19:44:06 +0200 Subject: [PATCH] Comma serparate keywords on sheet --- src/10th/Roster.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/10th/Roster.jsx b/src/10th/Roster.jsx index 992cdb0..67db7f5 100644 --- a/src/10th/Roster.jsx +++ b/src/10th/Roster.jsx @@ -660,7 +660,7 @@ const UnitComposition = ({ hideModelCount, modelStats, modelList }) => { - + {modelList.map((model, index) => ( @@ -1066,7 +1066,7 @@ const removeKeywordsSet = new Set([ const Keywords = ({ keywords }) => { const joinedKeywords = [...keywords] .filter((key) => !removeKeywordsSet.has(key)) - .join("; "); + .join(", "); return (