sessions - remove "In progress" grouping for now#296306
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR removes the "In Progress" section grouping from the agent sessions view to reduce visual clutter and make the interface less hectic. In-progress sessions are now placed in their appropriate date-based sections (Today, Yesterday, Week, Older) alongside completed sessions, rather than being grouped separately at the top.
Changes:
- Removed the
InProgressenum value fromAgentSessionSection - Updated grouping logic to place in-progress sessions in date-based sections based on their start time
- Updated tests to verify new behavior where in-progress sessions appear in their date-based sections
- Cleaned up unused imports of
isSessionInProgressStatuswhere no longer needed
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsModel.ts |
Removed InProgress enum value from AgentSessionSection |
src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsViewer.ts |
Removed InProgress section label and grouping logic from groupAgentSessionsByDate() |
src/vs/workbench/contrib/chat/browser/agentSessions/agentSessionsControl.ts |
Updated shouldShowTodayHeader() to no longer check for in-progress sessions, removed unused import |
src/vs/workbench/contrib/chat/test/browser/agentSessions/agentSessionsDataSource.test.ts |
Updated tests to verify in-progress sessions now appear in date-based sections, removed unused import |
sandy081
approved these changes
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
It makes the sessions view very hectic.