Skip to content

Commit

Permalink
chore(backport release-0.8): fix(ui): promote downstream subs in cont…
Browse files Browse the repository at this point in the history
…rol flow stages was broken (#2498)

Co-authored-by: Remington Breeze <[email protected]>
  • Loading branch information
akuitybot and rbreeze committed Sep 6, 2024
1 parent a0a4456 commit e6112da
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions ui/src/features/project/pipelines/pipelines.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -389,14 +389,7 @@ export const Pipelines = () => {
setSelectedWarehouse('');
} else {
const stageName = node.data?.metadata?.name || '';
// default to current freight when promoting subscribers
state.select(
type,
stageName,
type === FreightTimelineAction.PromoteSubscribers
? currentFreight[0].name
: undefined
);
state.select(type, stageName, undefined);
}
}}
action={
Expand Down

0 comments on commit e6112da

Please sign in to comment.