From 6a574e96d80cc4a58f600dbfcdb127870310f799 Mon Sep 17 00:00:00 2001 From: "Claude frontend-developer (Opus 4.6)" Date: Thu, 19 Feb 2026 19:57:08 +0000 Subject: [PATCH] fix(work-items): fix actions menu clipping and edit button 404 Remove overflow: hidden from .tableContainer so the actions dropdown menu is no longer clipped at the container boundary. Change edit button navigation from /work-items/:id/edit to /work-items/:id since the detail page already serves as the edit view. Co-Authored-By: Claude Opus 4.6 --- client/src/pages/WorkItemsPage/WorkItemsPage.module.css | 1 - client/src/pages/WorkItemsPage/WorkItemsPage.tsx | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/client/src/pages/WorkItemsPage/WorkItemsPage.module.css b/client/src/pages/WorkItemsPage/WorkItemsPage.module.css index b494e1482..cb7f83a39 100644 --- a/client/src/pages/WorkItemsPage/WorkItemsPage.module.css +++ b/client/src/pages/WorkItemsPage/WorkItemsPage.module.css @@ -145,7 +145,6 @@ background-color: var(--color-bg-primary); border: 1px solid var(--color-border); border-radius: 0.5rem; - overflow: hidden; box-shadow: var(--shadow-md); } diff --git a/client/src/pages/WorkItemsPage/WorkItemsPage.tsx b/client/src/pages/WorkItemsPage/WorkItemsPage.tsx index 6d5969b31..fa13ebc19 100644 --- a/client/src/pages/WorkItemsPage/WorkItemsPage.tsx +++ b/client/src/pages/WorkItemsPage/WorkItemsPage.tsx @@ -585,7 +585,7 @@ export function WorkItemsPage() { @@ -627,7 +627,7 @@ export function WorkItemsPage() {