Rename AIFS model group to avoid AI forecast wording

This commit is contained in:
2569718930@qq.com
2026-04-17 00:59:10 +08:00
parent c346fae351
commit 5f0677447e
4 changed files with 16 additions and 16 deletions
@@ -113,10 +113,10 @@ function getModelGroupMeta(
const tier = String(meta.tier || "").toLowerCase();
const upperName = String(name || "").toUpperCase();
if (tier.includes("ai") || upperName.includes("AIFS")) {
if (tier.includes("aifs") || upperName.includes("AIFS")) {
return {
key: "ai",
label: locale === "en-US" ? "AI forecast" : "AI 预报",
key: "aifs",
label: locale === "en-US" ? "AIFS model" : "AIFS 模型",
order: 1,
tone: "blue",
};