-
Notifications
You must be signed in to change notification settings - Fork 357
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: fix default id search for runs #9988
Conversation
this fixes an issue where the default search field for global run id would not work properly when interacting with the filter form. the issue is compound: 1) we defaulted new form fields to the `id` column of the experiment location, so when searching runs the column was invalid 2) the form select uses the column name to determine what copy to show in the select label, so the copy looked like it was using the global run id column when it wasn't. we fix this by specifying the location of all new children in the form field.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #9988 +/- ##
==========================================
- Coverage 54.53% 50.47% -4.06%
==========================================
Files 1257 948 -309
Lines 156935 128353 -28582
Branches 3614 3615 +1
==========================================
- Hits 85578 64785 -20793
+ Misses 71224 63435 -7789
Partials 133 133
Flags with carried forward coverage won't be shown. Click here to find out more.
|
✅ Deploy Preview for determined-ui ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
(cherry picked from commit e92c474)
Ticket
ET-811
Description
this fixes an issue where the default search field for global run id would not work properly when interacting with the filter form. the issue is compound:
we defaulted new form fields to the
id
column of the experiment location, so when searching runs the column was invalidthe form select uses the column name to determine what copy to show in the select label, so the copy looked like it was using the global run id column when it wasn't.
we fix this by specifying the location of all new children in the form field.
Test Plan
on the runs page, open the filters view and reset the view by hitting "clear filters".
the filter view should have closed. open it back up and update the filter value to match a run id that's currently in the view
the run should show up.
Checklist
docs/release-notes/
See Release Note for details.