From 756fb616913e230721eb41117b59d23cd271c179 Mon Sep 17 00:00:00 2001 From: Frank Date: Fri, 10 Oct 2025 13:52:54 -0400 Subject: [PATCH] wip: zen --- .../workspace/[id]/keys/key-section.module.css | 13 +++++++++++++ .../src/routes/workspace/[id]/provider-section.tsx | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css b/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css index ad20f1fa..92329cb5 100644 --- a/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css +++ b/packages/console/app/src/routes/workspace/[id]/keys/key-section.module.css @@ -147,10 +147,23 @@ &[data-slot="key-actions"] { font-family: var(--font-sans); + + button { + opacity: 0; + pointer-events: none; + transition: opacity 0.15s ease; + } } } tbody tr { + &:hover { + [data-slot="key-actions"] button { + opacity: 1; + pointer-events: auto; + } + } + &:last-child td { border-bottom: none; } diff --git a/packages/console/app/src/routes/workspace/[id]/provider-section.tsx b/packages/console/app/src/routes/workspace/[id]/provider-section.tsx index 65d9e7d0..b83fd263 100644 --- a/packages/console/app/src/routes/workspace/[id]/provider-section.tsx +++ b/packages/console/app/src/routes/workspace/[id]/provider-section.tsx @@ -89,7 +89,7 @@ function ProviderRow(props: { provider: Provider }) { {providerData() ? maskCredentials(providerData()!.credentials) : "--"}} + fallback={{providerData() ? maskCredentials(providerData()!.credentials) : "-"}} >