feat: multi-value, combinable Name/Tag/Status filters for test runs#377
Merged
nGervasyuk merged 3 commits intoJul 17, 2026
Conversation
Replace the single-value MUI DataGrid filter panel (the community edition allows only one filter at a time) with a dedicated filter bar above the test run list. - Select multiple values per filter and combine Name + Tag + Status at once - Faceted Tag matching: OR within a dimension (e.g. iPhone + iPad), AND across dimensions (e.g. locale + device) - Options narrow dynamically to values present in rows matching the other active filters - Tag options ordered by dimension (os, device, browser, viewport) with custom tags last - Prune selected values that no longer exist after their runs are deleted Remove the now-unused Status/Tag DataGrid filter operators.
nGervasyuk
force-pushed
the
feat/multi-value-test-run-filters
branch
from
July 16, 2026 10:03
d942c45 to
936de5e
Compare
nGervasyuk
force-pushed
the
feat/multi-value-test-run-filters
branch
from
July 16, 2026 11:58
6a9a040 to
b83e566
Compare
Make the project page's right column a flex column so the build summary takes its natural height and the test run list fills the remaining space, instead of a fixed 11% / 89% split that could let the stats summary overflow onto the filter bar on short viewports. Update the project page snapshot for the new layout.
Collaborator
Author
|
Thanks for the review! 🙏 Addressed the overlap note in d3cce17: the project page's right column is now a flex column, so the build summary takes its natural height and the test run list fills the rest — the stats summary no longer overflows onto the filter bar on short viewports. Snapshot updated. |
|
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.




What & why
The test run list only allowed one filter at a time (Name or Tag or Status), each with a single value — the MUI DataGrid community edition caps the built-in filter panel at one filter item. That's not enough to narrow large runs (e.g. "English iPhone screenshots that are Failed or New").
This replaces the DataGrid filter panel with a dedicated filter bar above the list.
Changes
iPhone + iPad→ either device), AND across dimensions (en_EN + iPhone→ English and iPhone). Dimensions = os/device/browser/viewport/customTags.StatusFilterOperators/TagFilterOperators.All filtering stays client-side (unchanged data flow); bulk operations and prev/next navigation keep working via
gridFilteredSortedRowIdsSelectorover the pre-filtered rows.Screenshots
Testing
tsc --noEmit,eslint,prettier— clean on changed files.