mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-25 02:49:32 +01:00
chore: Default local dev to pipeline 3000 on sidebar too (#23736)
This commit is contained in:
parent
87df4aa080
commit
139c11dec3
@ -17,7 +17,7 @@ describe('a11y', () => {
|
||||
'activity',
|
||||
'datamanagement',
|
||||
'personsmanagement',
|
||||
'apps',
|
||||
'pipeline',
|
||||
'toolbarlaunch',
|
||||
'settings',
|
||||
]
|
||||
|
@ -492,6 +492,14 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
|
||||
icon: <IconServer />,
|
||||
to: isUsingSidebar ? undefined : urls.dataWarehouse(),
|
||||
},
|
||||
hasOnboardedAnyProduct
|
||||
? {
|
||||
identifier: Scene.Pipeline,
|
||||
label: 'Data pipeline',
|
||||
icon: <IconDecisionTree />,
|
||||
to: urls.pipeline(),
|
||||
}
|
||||
: null,
|
||||
featureFlags[FEATURE_FLAGS.PRODUCT_INTRO_PAGES] !== 'test' || hasOnboardedFeatureFlags
|
||||
? {
|
||||
identifier: Scene.EarlyAccessFeatures,
|
||||
@ -500,21 +508,6 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
|
||||
to: urls.earlyAccessFeatures(),
|
||||
}
|
||||
: null,
|
||||
hasOnboardedAnyProduct
|
||||
? featureFlags[FEATURE_FLAGS.PIPELINE_UI]
|
||||
? {
|
||||
identifier: Scene.Pipeline,
|
||||
label: 'Data pipeline',
|
||||
icon: <IconDecisionTree />,
|
||||
to: urls.pipeline(),
|
||||
}
|
||||
: {
|
||||
identifier: Scene.Apps,
|
||||
label: 'Data pipeline',
|
||||
icon: <IconDecisionTree />,
|
||||
to: urls.projectApps(),
|
||||
}
|
||||
: null,
|
||||
].filter(isNotNil),
|
||||
]
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user