classification i18n fix (#21331)

* fix: fix classification pages none label i18n

* fix: fix README_CN formatting issue
This commit is contained in:
GuoQing Liu
2025-12-17 15:26:11 -07:00
committed by GitHub
parent 3edfd905de
commit 13957fec00
6 changed files with 18 additions and 10 deletions
@@ -161,7 +161,11 @@ export const ClassificationCard = forwardRef<
)}
>
<div className="smart-capitalize">
{data.name == "unknown" ? t("details.unknown") : data.name}
{data.name == "unknown"
? t("details.unknown")
: data.name == "none"
? t("details.none")
: data.name}
</div>
{data.score != undefined && (
<div