fix: fix classification none tag i18n wrong

This commit is contained in:
ZhaiSoul 2026-01-08 23:43:38 +08:00
parent 74d14cb8ca
commit b8716dd648

View File

@ -166,7 +166,7 @@ export const ClassificationCard = forwardRef<
<div className="break-all smart-capitalize">
{data.name == "unknown"
? t("details.unknown")
: data.name == "none"
: data.name.toLowerCase() == "none"
? t("details.none")
: data.name}
</div>