-
Notifications
You must be signed in to change notification settings - Fork 24
Change third party logos to generic images #957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -60,24 +60,23 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| href: '/integrations/snowflake', | ||
| label: 'Snowflake Data Sharing', | ||
| description: "Access your Organization's Event data on Snowflake", | ||
| icon: 'simple-icons:snowflake', | ||
| icon: 'material-symbols:database-outline', | ||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/google-analytics-4', | ||
| label: 'Google Analytics', | ||
| description: | ||
| 'Send DevCycle Feature/Variation data from Tag Manager to Google Analytics 4 for A/B test analysis', | ||
| icon: 'simple-icons:googleanalytics', | ||
| icon: 'mdi:analytics', | ||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/rollbar', | ||
| label: 'Rollbar', | ||
| description: | ||
| 'Enhance error logging with DevCycle Feature and Variable data', | ||
| icon: '', | ||
| customIconPath: '/integrations/rollbar/rollbar-icon.svg' | ||
| icon: 'mdi:analytics', | ||
| } | ||
| ]} | ||
| /> | ||
|
|
@@ -112,7 +111,7 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| href: '/integrations/feature-importer', | ||
| description: 'Import resources from other feature flag providers. ', | ||
| label: 'Feature Flag Importer', | ||
| icon: 'logos:launchdarkly-icon', | ||
| icon: 'tabler:flag-filled', | ||
| }, | ||
| { | ||
| type: 'link', | ||
|
|
@@ -127,7 +126,7 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| description: | ||
| 'Upload DevCycle configurations to Vercel Edge Config for faster retrieval', | ||
| label: 'Vercel Edge Config', | ||
| icon: 'logos:vercel-icon', | ||
| icon: 'ant-design:code-outlined', | ||
| }, | ||
| ]} | ||
| /> | ||
|
|
@@ -141,42 +140,42 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| href: '/integrations/github/feature-usage-action', | ||
| description: 'Display code snippets for each variable used in a project.', | ||
| label: 'GitHub: Flag Code Usages', | ||
| icon: 'simple-icons:github', | ||
| icon: 'mdi:analytics', | ||
|
||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/github/pr-insights-action', | ||
| label: 'GitHub: Flag Change Insights', | ||
| description: 'Display added/removed flags on each Pull Request.', | ||
| icon: 'simple-icons:github', | ||
| icon: 'fluent-mdl2:insights', | ||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/bitbucket/feature-usage-action', | ||
| description: 'Display code snippets for each variable used in a project.', | ||
| label: 'Bitbucket: Flag Code Usages', | ||
| icon: 'simple-icons:bitbucket', | ||
| icon: 'mdi:analytics', | ||
|
||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/bitbucket/pr-insights-action', | ||
| description: 'Display added/removed flags on each Pull Request.', | ||
| label: 'Bitbucket: Flag Change Insights', | ||
| icon: 'simple-icons:bitbucket', | ||
| icon: 'fluent-mdl2:insights', | ||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/gitlab/feature-usage-action', | ||
| description: 'Display code snippets for each variable used in a project.', | ||
| label: 'GitLab: Flag Code Usages', | ||
| icon: 'simple-icons:gitlab', | ||
| icon: 'mdi:analytics', | ||
|
||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/gitlab/pr-insights-action', | ||
| description: 'Display added/removed flags on each Merge Request.', | ||
| label: 'GitLab: Flag Change Insights', | ||
| icon: 'simple-icons:gitlab', | ||
| icon: 'fluent-mdl2:insights', | ||
| }, | ||
| ]} | ||
| /> | ||
|
|
@@ -191,7 +190,7 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| label: 'Slack', | ||
| description: | ||
| 'Connect DevCycle to your Slack workspace to track Feature updates.', | ||
| icon: 'akar-icons:slack-fill', | ||
| icon: 'material-symbols:chat-outline-rounded', | ||
| }, | ||
| ]} | ||
| /> | ||
|
|
@@ -203,15 +202,15 @@ DevCycle APIs, as well as third party integrations to connect DevCycle to the to | |
| type: 'link', | ||
| href: '/integrations/jira', | ||
| label: 'Jira: Flag Management', | ||
| description: 'Link Jira tickets directly to DecCycle features', | ||
| icon: 'simple-icons:jira', | ||
| description: 'Link Jira tickets directly to DevCycle features', | ||
| icon: 'tabler:flag-filled', | ||
| }, | ||
| { | ||
| type: 'link', | ||
| href: '/integrations/terraform', | ||
| label: 'Terraform Provider', | ||
| description: 'Manage projects, features and more with Terraform', | ||
| icon: 'simple-icons:terraform', | ||
| icon: 'ant-design:code-outlined', | ||
| }, | ||
| ]} | ||
| /> | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The same 'mdi:analytics' icon is used for both Google Analytics (line 71) and Rollbar (line 79), despite these being different types of integrations (analytics vs error logging). Consider using a more appropriate icon for Rollbar, such as 'mdi:bug' or 'mdi:alert-circle' to better represent error logging functionality.