Skip to content

Commit

Permalink
fix: update icons to match website, pipeline → pipelines (#26618)
Browse files Browse the repository at this point in the history
  • Loading branch information
corywatilo authored Dec 4, 2024
1 parent 1181b95 commit ff09d8f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions frontend/src/layout/navigation-3000/navigationLogic.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import {
IconChat,
IconCursorClick,
IconDashboard,
IconDatabase,
IconDecisionTree,
IconGraph,
IconHome,
IconLive,
IconLogomark,
IconMegaphone,
IconMessage,
IconNotebook,
IconPeople,
IconPieChart,
IconPlug,
IconPlusSmall,
IconRewindPlay,
IconRocket,
Expand Down Expand Up @@ -492,7 +492,7 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
{
identifier: Scene.Surveys,
label: 'Surveys',
icon: <IconChat />,
icon: <IconMessage />,
to: urls.surveys(),
},
featureFlags[FEATURE_FLAGS.PRODUCT_INTRO_PAGES] !== 'test' || hasOnboardedFeatureFlags
Expand All @@ -506,7 +506,7 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
{
identifier: Scene.DataWarehouse,
label: 'Data warehouse',
icon: <IconServer />,
icon: <IconDatabase />,
to: isUsingSidebar ? undefined : urls.dataWarehouse(),
},
featureFlags[FEATURE_FLAGS.SQL_EDITOR]
Expand All @@ -529,8 +529,8 @@ export const navigation3000Logic = kea<navigation3000LogicType>([
hasOnboardedAnyProduct
? {
identifier: Scene.Pipeline,
label: 'Data pipeline',
icon: <IconDecisionTree />,
label: 'Data pipelines',
icon: <IconPlug />,
to: urls.pipeline(),
}
: null,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ import {
IconAI,
IconChevronDown,
IconDatabase,
IconDecisionTree,
IconFeatures,
IconGraph,
IconHelmet,
IconMap,
IconMessage,
IconPieChart,
IconPlug,
IconRewindPlay,
IconStack,
IconTestTube,
Expand Down Expand Up @@ -72,7 +72,7 @@ const PRODUCTS = [
{
name: 'Data pipelines',
slug: 'cdp',
icon: <IconDecisionTree className="text-[#2EA2D3] h-5 w-5" />,
icon: <IconPlug className="text-[#2EA2D3] h-5 w-5" />,
},
{
name: 'Data warehouse',
Expand Down

0 comments on commit ff09d8f

Please sign in to comment.