-
Notifications
You must be signed in to change notification settings - Fork 16
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
Shuffle results panel top-level tabs and update default selection #1076
Shuffle results panel top-level tabs and update default selection #1076
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1076 +/- ##
==========================================
+ Coverage 68.98% 69.11% +0.13%
==========================================
Files 113 113
Lines 6764 6764
==========================================
+ Hits 4666 4675 +9
+ Misses 2098 2089 -9
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
959c98a
to
709dcd0
Compare
self.toggle_controls.value = "Summary" | ||
self.toggle_controls.value = ( | ||
"Results" | ||
if (process := self._model.fetch_process_node()) and process.is_finished_ok |
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.
If a process has multiple properties and one fails, would this prevent the visualization of the results for the properties that completed successfully?
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.
I don't see why it would. This is just defining the default selected tab. All three tabs are still there.
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.
because if one fail, process.is_finished_ok will be false , right ?
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.
The default in this case is Status and the app will direct the user there. But the other panels are still accessible.
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!
This PR does the following: