Skip to content

Commit 197781c

Browse files
authored
Enables subgraphs by default (#1341)
## Description Enable Subgraph Navigation by default. This change sets the default value of the "Subgraph Navigation" beta flag from `false` to `true`, making the experimental feature for viewing subgraphs available to all users without requiring them to manually enable it. ## Related Issue and Pull requests ## Type of Change - [x] Improvement - [x] New feature ## Checklist - [x] I have tested this does not break current pipelines / runs functionality - [x] I have tested the changes on staging ## Test Instructions Verify that users can now navigate into nested pipeline components by double-clicking without needing to enable the beta flag manually. ## Additional Comments This feature allows users to explore subgraphs more intuitively by double-clicking on nested components.
1 parent 170cdcc commit 197781c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/betaFlags.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const ExistingBetaFlags = {
1111
["remote-component-library-search"]: {
1212
name: "Published Components Library",
1313
description: "Enable the Published Components Library feature.",
14-
default: false,
14+
default: true,
1515
} as BetaFlag,
1616

1717
["redirect-on-new-pipeline-run"]: {
@@ -38,7 +38,7 @@ export const ExistingBetaFlags = {
3838
name: "Subgraph Navigation",
3939
description:
4040
"⚠️ Experimental ⚠️ feature for viewing subgraphs. Navigate into nested pipeline components by double-clicking.",
41-
default: false,
41+
default: true,
4242
} as BetaFlag,
4343

4444
["partial-selection"]: {

0 commit comments

Comments
 (0)