From b339f923d66ca3df7e1fd1271e5c9d1a97440136 Mon Sep 17 00:00:00 2001 From: Dotta Date: Mon, 16 Mar 2026 18:59:36 -0500 Subject: [PATCH] Fix skill list namespace layout to stack vertically The namespace was appearing side-by-side with the skill name because they were in the same flex row. Restructured the layout so the namespace appears on its own line above, with the icon and skill name on the row below it. Co-Authored-By: Paperclip --- ui/src/pages/CompanySkills.tsx | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/ui/src/pages/CompanySkills.tsx b/ui/src/pages/CompanySkills.tsx index 7b55006c..d33023b6 100644 --- a/ui/src/pages/CompanySkills.tsx +++ b/ui/src/pages/CompanySkills.tsx @@ -422,23 +422,25 @@ function SkillList({ className="flex min-w-0 items-center self-stretch pr-2 text-left no-underline" onClick={() => onSelectSkill(skill.id)} > - - - - - - {source.managedLabel} - - - {source.managedLabel} - + {skill.key.includes("/") && ( {skill.key.split("/").slice(0, -1).join("/")} )} - - {skill.name} + + + + + + {source.managedLabel} + + + {source.managedLabel} + + + {skill.name} +