From 9e843c4decd50423ee2992afcd0a046a673e22e1 Mon Sep 17 00:00:00 2001 From: Dotta Date: Mon, 16 Mar 2026 18:56:56 -0500 Subject: [PATCH] Show namespace above skill name with icon on name row in detail view On the skill detail page, the namespace (e.g. org/repo) now appears above the skill name in small monospace text, and the source icon is placed on the same row as the skill name rather than in the metadata. Co-Authored-By: Paperclip --- ui/src/pages/CompanySkills.tsx | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/ui/src/pages/CompanySkills.tsx b/ui/src/pages/CompanySkills.tsx index 570bfea2..7b55006c 100644 --- a/ui/src/pages/CompanySkills.tsx +++ b/ui/src/pages/CompanySkills.tsx @@ -540,7 +540,15 @@ function SkillPane({
-

{detail.name}

+ {detail.key.includes("/") && ( +
+ {detail.key.split("/").slice(0, -1).join("/")} +
+ )} +

+ + {detail.name} +

{detail.description && (

{detail.description}

)}