Skip to content

Commit

Permalink
Merge branch 'main' into feature/disable-preview
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu5 authored May 22, 2024
2 parents 94e3501 + 3132840 commit 46dbf28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Please follow the established format:
- Remove default props from functional components. (#1906)
- Fix for schema change in strawberry-graphql JSON scalar. (#1903)
- Fix messaging level when package compatibility is not satisfied. (#1904)
- Fix broken URL when active pipeline name changes on initial load. (#1914)

# Release 9.0.0

Expand Down
2 changes: 1 addition & 1 deletion src/components/flowchart-wrapper/flowchart-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export const FlowChartWrapper = ({
if (localStorageParams) {
const paramActions = {
pipeline: (value) => {
if (!searchParams.has(params.pipeline) && activePipeline) {
if (activePipeline) {
toSetQueryParam(params.pipeline, value.active || activePipeline);
}
},
Expand Down

0 comments on commit 46dbf28

Please sign in to comment.