Comma serparate keywords on sheet
CI / check (push) Has been cancelled

This commit is contained in:
2026-07-25 19:44:06 +02:00
parent cf67918bc0
commit 41edd40cd5
+2 -2
View File
@@ -660,7 +660,7 @@ const UnitComposition = ({ hideModelCount, modelStats, modelList }) => {
<tbody style={{ <tbody style={{
fontSize: "0.7em", fontSize: "0.7em",
}}> }}>
{modelList.map((model, index) => ( {modelList.map((model, index) => (
<tr key={model}> <tr key={model}>
<td></td> <td></td>
@@ -1066,7 +1066,7 @@ const removeKeywordsSet = new Set([
const Keywords = ({ keywords }) => { const Keywords = ({ keywords }) => {
const joinedKeywords = [...keywords] const joinedKeywords = [...keywords]
.filter((key) => !removeKeywordsSet.has(key)) .filter((key) => !removeKeywordsSet.has(key))
.join("; "); .join(", ");
return ( return (
<div <div
style={{ style={{