chore: hide agents skills tab from UI
Comment out the Skills tab entry, view rendering, and breadcrumb in AgentDetail so it's not visible. The code is preserved for later re-enablement. Co-Authored-By: Paperclip <noreply@paperclip.ing> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -701,8 +701,8 @@ export function AgentDetail() {
|
|||||||
crumbs.push({ label: `Run ${urlRunId.slice(0, 8)}` });
|
crumbs.push({ label: `Run ${urlRunId.slice(0, 8)}` });
|
||||||
} else if (activeView === "configuration") {
|
} else if (activeView === "configuration") {
|
||||||
crumbs.push({ label: "Configuration" });
|
crumbs.push({ label: "Configuration" });
|
||||||
} else if (activeView === "skills") {
|
// } else if (activeView === "skills") { // TODO: bring back later
|
||||||
crumbs.push({ label: "Skills" });
|
// crumbs.push({ label: "Skills" });
|
||||||
} else if (activeView === "runs") {
|
} else if (activeView === "runs") {
|
||||||
crumbs.push({ label: "Runs" });
|
crumbs.push({ label: "Runs" });
|
||||||
} else if (activeView === "budget") {
|
} else if (activeView === "budget") {
|
||||||
@@ -862,7 +862,7 @@ export function AgentDetail() {
|
|||||||
items={[
|
items={[
|
||||||
{ value: "dashboard", label: "Dashboard" },
|
{ value: "dashboard", label: "Dashboard" },
|
||||||
{ value: "configuration", label: "Configuration" },
|
{ value: "configuration", label: "Configuration" },
|
||||||
{ value: "skills", label: "Skills" },
|
// { value: "skills", label: "Skills" }, // TODO: bring back later
|
||||||
{ value: "runs", label: "Runs" },
|
{ value: "runs", label: "Runs" },
|
||||||
{ value: "budget", label: "Budget" },
|
{ value: "budget", label: "Budget" },
|
||||||
]}
|
]}
|
||||||
@@ -955,11 +955,11 @@ export function AgentDetail() {
|
|||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{activeView === "skills" && (
|
{/* {activeView === "skills" && (
|
||||||
<SkillsTab
|
<SkillsTab
|
||||||
agent={agent}
|
agent={agent}
|
||||||
/>
|
/>
|
||||||
)}
|
)} */}{/* TODO: bring back later */}
|
||||||
|
|
||||||
{activeView === "runs" && (
|
{activeView === "runs" && (
|
||||||
<RunsTab
|
<RunsTab
|
||||||
|
|||||||
Reference in New Issue
Block a user