This commit is contained in:
Josh Hawkins 2025-11-08 13:12:57 -06:00
parent 7c6046316b
commit a620f83d5e
2 changed files with 4 additions and 2 deletions

View File

@ -96,7 +96,9 @@
"back": "Go back", "back": "Go back",
"hide": "Hide {{item}}", "hide": "Hide {{item}}",
"show": "Show {{item}}", "show": "Show {{item}}",
"ID": "ID" "ID": "ID",
"none": "None",
"all": "All"
}, },
"list": { "list": {
"two": "{{0}} and {{1}}", "two": "{{0}} and {{1}}",

View File

@ -1490,7 +1490,7 @@ function ObjectDetailsTab({
</div> </div>
) : ( ) : (
<div className="overflow-auto text-sm text-primary"> <div className="overflow-auto text-sm text-primary">
{desc || "None"} {desc || t("label.none", { ns: "common" })}
</div> </div>
) )
) : ( ) : (