Skip to content

Fix Sessions grid column overlap - #2465

Open
ejsmith wants to merge 6 commits into
mainfrom
issue/sessions-grid-column-overlap
Open

Fix Sessions grid column overlap#2465
ejsmith wants to merge 6 commits into
mainfrom
issue/sessions-grid-column-overlap

Conversation

@ejsmith

@ejsmith ejsmith commented Aug 13, 2026

Copy link
Copy Markdown
Member

What changed

  • Mark the Sessions Summary column as the flexible full-width column.
  • Prefer an explicit w-full column when the shared table chooses which unsized column should fill the remaining width.
  • Add regression coverage for the Sessions column metadata and shared table sizing behavior.

Why

The shared fixed-layout table treated the last unsized column as flexible. On the Sessions grid that made Date consume the remaining width and collapsed Summary, causing the Summary and Duration headers to overlap.

Verification

  • npm run validate
  • npm run test:unit -- src/lib/features/shared/components/data-table/data-table-body.svelte.test.ts src/lib/features/sessions/components/session-table-columns.test.ts (2 files, 9 tests)

Breaking changes

None.

@ejsmith
ejsmith marked this pull request as ready for review August 13, 2026 00:08

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 212267602f

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines +173 to +176
table.setColumnSizing((current) => ({
...current,
[header.column.id]: currentSize
}));

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2 Badge Don't persist the flexible width before a drag occurs

When a user presses and releases the resize handle without moving it, this immediately writes the rendered width into the persisted column-sizing state. For the flexible w-full column, that makes getFlexibleDataColumnId() stop treating the column as flexible, so a simple click permanently converts it to a fixed-width column and later viewport resizing can leave unused space or introduce horizontal overflow. The size should only be committed after an actual drag, while still using the rendered width as the drag's starting point.

Useful? React with 👍 / 👎.

@github-actions

Copy link
Copy Markdown

Code Coverage

Package Line Rate Branch Rate Complexity Health
Exceptionless.Core 75% 67% 9992
Exceptionless.AppHost 38% 40% 139
Exceptionless.Insulation 37% 35% 286
Exceptionless.Web 85% 69% 7024
Summary 78% (23478 / 30282) 67% (11016 / 16516) 17441

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant