Skip to content

Commit

Permalink
Rename run group side bar to Re-executions instead of the job name (#…
Browse files Browse the repository at this point in the history
…26359)

## Summary & Motivation
During dogfooding of some changes to retry logic, @anuthebananu pointed
out that the title for the lineage of retried runs was a bit confusing.
It's currently the name of the job, which for asset jobs leaks the
internal `__ASSET_JOB` name
<img width="630" alt="Screenshot 2024-12-09 at 3 01 30 PM"
src="https://github.com/user-attachments/assets/8f5841b8-9ea7-4a14-93ec-d373dc8d56a8">

This PR renames it `Re-executions`. 
<img width="572" alt="Screenshot 2024-12-12 at 11 28 57 AM"
src="https://github.com/user-attachments/assets/43feabc3-febe-4573-8b33-9299c722bf4e"
/>


## How I Tested These Changes

## Changelog

Renamed the run lineage sidebar on the Run details page to
`Re-executions`.
  • Loading branch information
jamiedemaria authored Dec 12, 2024
1 parent bf7ea98 commit a1c6d7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const RunGroupPanel = ({
});

return (
<SidebarSection title={runs[0] ? `${runs[0].pipelineName} (${runs.length})` : ''}>
<SidebarSection title={runs[0] ? `Re-executions (${runs.length - 1})` : ''}>
<>
{runs.map((g, idx) =>
g ? (
Expand Down

1 comment on commit a1c6d7e

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for dagit-core-storybook ready!

✅ Preview
https://dagit-core-storybook-hwr5xch59-elementl.vercel.app

Built with commit a1c6d7e.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.