From b8716dd648b0c5710adbecc326dae7bb0dfc7513 Mon Sep 17 00:00:00 2001 From: ZhaiSoul <842607283@qq.com> Date: Thu, 8 Jan 2026 23:43:38 +0800 Subject: [PATCH] fix: fix classification none tag i18n wrong --- web/src/components/card/ClassificationCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/card/ClassificationCard.tsx b/web/src/components/card/ClassificationCard.tsx index a8ed12f24..ffd28a0d0 100644 --- a/web/src/components/card/ClassificationCard.tsx +++ b/web/src/components/card/ClassificationCard.tsx @@ -166,7 +166,7 @@ export const ClassificationCard = forwardRef<
{data.name == "unknown" ? t("details.unknown") - : data.name == "none" + : data.name.toLowerCase() == "none" ? t("details.none") : data.name}