diff --git a/ui/src/styles/skill-workshop.css b/ui/src/styles/skill-workshop.css index 6b2c3b47284..e2e22ad7bea 100644 --- a/ui/src/styles/skill-workshop.css +++ b/ui/src/styles/skill-workshop.css @@ -451,27 +451,6 @@ box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3); } -.sw-action-bar__spacer { - flex: 1; -} - -.sw-action-bar__hint { - color: var(--muted); - font-size: 11px; - display: flex; - gap: 14px; - align-items: center; -} - -.sw-action-bar__hint code { - background: var(--bg-elevated); - color: var(--text); - padding: 1px 5px; - border-radius: 3px; - font-size: 10px; - font-family: var(--mono); -} - .sw-btn { padding: 7px 14px; border-radius: var(--radius-md); diff --git a/ui/src/ui/views/skill-workshop.ts b/ui/src/ui/views/skill-workshop.ts index 4015c422638..78d7646e647 100644 --- a/ui/src/ui/views/skill-workshop.ts +++ b/ui/src/ui/views/skill-workshop.ts @@ -251,30 +251,27 @@ function renderDetail(props: SkillWorkshopProps, proposal: SkillWorkshopProposal : nothing} -
+ ${proposal.status === "pending" ? renderPendingActions(props, proposal) : nothing} + + `; +} + +function renderPendingActions(props: SkillWorkshopProps, proposal: SkillWorkshopProposal) { + return html` + `; }