[v3-3-test] UI: Add Run ID filter to the Grid view (#70150) - #70553
Merged
Conversation
The Dag Runs list page lets users narrow runs by Run ID, but the Grid view's filter bar offered no equivalent, forcing users to eyeball run columns to locate a specific run. Expose the same Run ID search on the Grid so both surfaces filter consistently. The pill exposes the same substring/prefix advanced-search toggle used elsewhere; the Grid query hooks route the value through ``useAdvancedSearchArg`` so the toggle chooses between the substring ``run_id_pattern`` and the index-friendly ``run_id_prefix_pattern`` variant on each request. (cherry picked from commit 5197210) Co-authored-by: Dheeraj Turaga <dheerajturaga@gmail.com>
1 task
bbovenzi
marked this pull request as ready for review
July 27, 2026 18:20
bbovenzi
requested review from
bbovenzi,
bugraoz93,
choo121600,
ephraimbuddy,
guan404ming,
henry3260,
jason810496,
pierrejeambrun,
rawwar,
ryanahamilton,
shubhamraj-git and
vatsrahul1001
as code owners
July 27, 2026 18:20
bbovenzi
approved these changes
Jul 27, 2026
dheerajturaga
approved these changes
Jul 27, 2026
Contributor
Author
|
Hi maintainer, this PR was merged without a milestone set.
|
Contributor
|
Moving to 3.4.0 this is more suitable for minor as its a new feature |
1 task
bbovenzi
pushed a commit
that referenced
this pull request
Aug 3, 2026
vatsrahul1001
pushed a commit
that referenced
this pull request
Aug 5, 2026
The Dag Runs list page lets users narrow runs by Run ID, but the Grid view's filter bar offered no equivalent, forcing users to eyeball run columns to locate a specific run. Expose the same Run ID search on the Grid so both surfaces filter consistently. The pill exposes the same substring/prefix advanced-search toggle used elsewhere; the Grid query hooks route the value through ``useAdvancedSearchArg`` so the toggle chooses between the substring ``run_id_pattern`` and the index-friendly ``run_id_prefix_pattern`` variant on each request. (cherry picked from commit 5197210) Co-authored-by: Dheeraj Turaga <dheerajturaga@gmail.com>
vatsrahul1001
added a commit
that referenced
this pull request
Aug 5, 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 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.
The Dag Runs list page lets users narrow runs by Run ID, but the Grid
view's filter bar offered no equivalent, forcing users to eyeball run
columns to locate a specific run. Expose the same Run ID search on the
Grid so both surfaces filter consistently.
The pill exposes the same substring/prefix advanced-search toggle used
elsewhere; the Grid query hooks route the value through
useAdvancedSearchArgso the toggle chooses between the substringrun_id_patternand the index-friendlyrun_id_prefix_patternvariant on each request.
(cherry picked from commit 5197210)
Co-authored-by: Dheeraj Turaga dheerajturaga@gmail.com