refactor: remove time-based grouping from session list - #78
Merged
Conversation
Session list no longer splits sessions into 'Today', 'Yesterday', 'Last 7 days', 'Older' groups. All sessions are shown in a flat list. Changes: - app.js: Simplify groupedSessions() to return flat list - index.html: Hide section label when empty (x-show) The time-based grouping added visual clutter without much value, especially for users with many sessions.
|
✅ Build succeeded! Artifact: |
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Remove time-based grouping from session list. Sessions are no longer split into "Today", "Yesterday", "Last 7 days", "Older" groups — all sessions are shown in a flat list.
Motivation
The time-based grouping added visual clutter without much value:
Changes
app.js: SimplifygroupedSessions()to return a flat list instead of time-based groupsindex.html: Hide section label when empty (x-show="group.label")Testing