Revert "Comma serparate keywords on sheet"

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