mirror of
https://github.com/Pax1601/DCSOlympus.git
synced 2025-10-29 16:56:34 +00:00
fix: Removed accidental development feature in unit spawn men
Also bumped version to 2.0.1
This commit is contained in:
@@ -469,29 +469,7 @@ export function SpawnContextMenu(props: {}) {
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
<div className="flex flex-wrap gap-1">
|
|
||||||
{tags.groundunit
|
|
||||||
.sort()
|
|
||||||
.map((type) => {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
key={type}
|
|
||||||
data-selected={selectedType === type}
|
|
||||||
className={`
|
|
||||||
cursor-pointer rounded-full bg-olympus-900
|
|
||||||
px-2 py-0.5 text-xs font-bold text-olympus-50
|
|
||||||
data-[selected='true']:bg-blue-500
|
|
||||||
data-[selected='true']:text-gray-200
|
|
||||||
`}
|
|
||||||
onClick={() => {
|
|
||||||
selectedType === type ? setSelectedType(null) : setSelectedType(type);
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{type}
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
})}
|
|
||||||
</div>
|
|
||||||
<div
|
<div
|
||||||
className={`
|
className={`
|
||||||
flex max-h-[350px] flex-col gap-1 overflow-y-scroll
|
flex max-h-[350px] flex-col gap-1 overflow-y-scroll
|
||||||
|
|||||||
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "v2.0.0"
|
"version": "v2.0.1"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user