fix: 机器人卡片平台选项改为上下排列

This commit is contained in:
xmanrui
2026-02-21 15:25:55 +08:00
parent e80b1a4f30
commit e461eb3abb
+1 -1
View File
@@ -271,7 +271,7 @@ function AgentCard({ agent, gatewayPort, gatewayToken, t, testResult }: { agent:
<div>
<span className="text-xs text-[var(--text-muted)] block mb-1">{t("agent.platform")}</span>
<div className="flex flex-wrap gap-1">
<div className="flex flex-col gap-1">
{agent.platforms.map((p, i) => (
<PlatformBadge key={i} platform={p} agentId={agent.id} gatewayPort={gatewayPort} gatewayToken={gatewayToken} t={t} />
))}