-
Notifications
You must be signed in to change notification settings - Fork 113
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/ensure Created by
is set in Experiment Tracking
#937
Conversation
Signed-off-by: Tynan DeBold <[email protected]>
Signed-off-by: Tynan DeBold <[email protected]>
Signed-off-by: Tynan DeBold <[email protected]>
Created by
is set in Experiment TrackingCreated by
is set in Experiment Tracking
@@ -117,6 +117,7 @@ const RunMetadata = ({ | |||
<tr> | |||
<td className="details-metadata__title" colSpan="2"> | |||
<span | |||
className="details-metadata__title-detail" |
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.
@@ -72,7 +72,7 @@ def format_run( | |||
user_run_details.notes if user_run_details and user_run_details.notes else "" | |||
) | |||
run = Run( | |||
author="", | |||
author=run_blob.get("username"), |
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.
This is the operative change in this PR.
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.
🎉
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 👍
…x/created-by-is-empty-exp-tracking Signed-off-by: Tynan DeBold <[email protected]>
Signed-off-by: Tynan DeBold [email protected]
Description
Fixes #911.
Development notes
It was a one-line fix. The
author
field wasn't being set, and now it is.QA notes
Take a look at the Gitpod link and view the most-recent run. The field should be filled in.
This PR also includes a tiny fix of a style inconsistency for exp. tracking run titles that was introduced in #919.
Checklist
RELEASE.md
file