v0.11.7 — Default tab → Sources, fix sort-reset on reload#103
Merged
Conversation
… on reload
Two small UX defaults that were quietly wrong:
1. Default tab on first load was Measures; switching to Sources. The
highest-leverage entry point for someone documenting an unfamiliar
PBIP is "where does this data come from?" — Measures is one click
away. Three call sites updated (initial declaration + initial
switchTab + reload switchTab).
2. Reload no longer flips Measures/Columns to ascending sort. The
cross-report state-reset at __loadBrowserData was setting
desc:false while preserving the key, so the initial-load default
(usageCount desc) flipped on every report swap. Now explicitly
re-applies the same {key:"usageCount",desc:true} both at module
init and on reload.
Tests: 276/276 unchanged.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Two small UX defaults that were quietly wrong on the dashboard.
Changed
Fixed
Test plan
🤖 Generated with Claude Code