Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/web/ce/components/workspace/content-wrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ export const WorkspaceContentWrapper = observer(function WorkspaceContentWrapper
{shouldRenderAppRail && <AppRailRoot />}
<div
className={cn(
"relative size-full pl-0 pb-2 pr-2 flex-grow transition-all ease-in-out duration-300 overflow-hidden",
"relative size-full pl-2 pb-2 pr-2 flex-grow transition-all ease-in-out duration-300 overflow-hidden",
{
"pl-2": shouldRenderAppRail,
"pl-0": shouldRenderAppRail,
}
)}
>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ const IssueRowDetails = observer(function IssueRowDetails(props: IssueRowDetails
id={`issue-${issueId}`}
ref={cellRef}
tabIndex={0}
className="relative md:sticky left-0 z-10 group/list-block bg-custom-background-100"
className="relative md:sticky left-0 z-10 group/list-block bg-custom-background-100 max-w-lg"
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Adding max-w-lg to the sticky table cell may cause width misalignment with the corresponding header cell in spreadsheet-header.tsx (line 48), which has min-w-60 but no max-width constraint. In table layouts, sticky header and body cells should typically have matching width constraints to maintain column alignment. Consider either:

  1. Adding the same max-w-lg constraint to the header cell
  2. Using a more standard approach like a fixed width class on both elements
  3. Verifying that the table layout still aligns correctly after this change

Copilot uses AI. Check for mistakes.
>
<ControlLink
href={workItemLink}
Expand Down
Loading