From 8937d5511e9465523d15572ab195955f65d224e0 Mon Sep 17 00:00:00 2001 From: MananTank Date: Mon, 21 Apr 2025 16:21:38 +0000 Subject: [PATCH] Dashboard: Fix table row not clickable in safari because of sticky thead (#6783) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ## PR-Codex overview This PR focuses on updating the `className` property of the `` component in two files to simplify its styling. ### Detailed summary - Updated `className` in `` component in `apps/dashboard/src/@/components/ui/table.tsx`: - Changed from a complex string with multiple classes to a simpler string: `"relative border-b bg-background"`. - Applied the same change in `apps/playground-web/src/components/ui/table.tsx`. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` --- apps/dashboard/src/@/components/ui/table.tsx | 6 +----- apps/playground-web/src/components/ui/table.tsx | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/apps/dashboard/src/@/components/ui/table.tsx b/apps/dashboard/src/@/components/ui/table.tsx index aad6ec54bb9..5c586685eaf 100644 --- a/apps/dashboard/src/@/components/ui/table.tsx +++ b/apps/dashboard/src/@/components/ui/table.tsx @@ -24,11 +24,7 @@ const TableHeader = React.forwardRef< >(({ className, ...props }, ref) => ( )); diff --git a/apps/playground-web/src/components/ui/table.tsx b/apps/playground-web/src/components/ui/table.tsx index aad6ec54bb9..5c586685eaf 100644 --- a/apps/playground-web/src/components/ui/table.tsx +++ b/apps/playground-web/src/components/ui/table.tsx @@ -24,11 +24,7 @@ const TableHeader = React.forwardRef< >(({ className, ...props }, ref) => ( ));