Browse Source

feat(integration-directory): InsightFinder is one word (#30413)

* feat(integration-directory): InsightFinder is one word
Manu 3 years ago
parent
commit
5249863dc9

+ 0 - 0
src/sentry/static/sentry/images/logos/logo-insight-finder.svg → src/sentry/static/sentry/images/logos/logo-insightfinder.svg


+ 2 - 2
static/app/plugins/components/pluginIcon.tsx

@@ -20,7 +20,7 @@ import githubEnterprise from 'sentry-logos/logo-github-enterprise.svg';
 import gitlab from 'sentry-logos/logo-gitlab.svg';
 import grafana from 'sentry-logos/logo-grafana.svg';
 import heroku from 'sentry-logos/logo-heroku.svg';
-import insightfinder from 'sentry-logos/logo-insight-finder.svg';
+import insightfinder from 'sentry-logos/logo-insightfinder.svg';
 import jira from 'sentry-logos/logo-jira.svg';
 import jiraserver from 'sentry-logos/logo-jira-server.svg';
 import komodor from 'sentry-logos/logo-komodor.svg';
@@ -90,7 +90,7 @@ export const ICON_PATHS = {
   gitlab,
   grafana,
   heroku,
-  insight_finder: insightfinder,
+  insightfinder,
   jira,
   jira_server: jiraserver,
   komodor,

+ 4 - 4
static/app/views/organizationIntegrations/constants.tsx

@@ -257,16 +257,16 @@ export const documentIntegrationList: DocumentIntegration[] = [
     ],
   },
   {
-    slug: 'insight_finder',
-    name: 'Insight Finder',
-    author: 'Insight Finder',
+    slug: 'insightfinder',
+    name: 'InsightFinder',
+    author: 'InsightFinder',
     docUrl: 'https://insightfinder.com/insightfinder-sentry-integration/',
     description:
       'InsightFinder ingests the errors that Sentry detects through its standard APIs and analyzes them using its patented, unsupervised, neural network algorithms. InsightFinder prioritizes those errors and provides context so anomalous events can be resolved before business is impacted.',
     features: [
       {
         featureGate: 'webhook',
-        description: 'Forward Sentry events to Insight Finder.',
+        description: 'Forward Sentry events to InsightFinder.',
       },
     ],
     resourceLinks: [

+ 1 - 1
tests/js/spec/views/organizationIntegrations/integrationListDirectory.spec.jsx

@@ -61,11 +61,11 @@ describe('IntegrationListDirectory', function () {
         'datadog',
         'fullstory',
         'github_actions',
-        'insight_finder',
         'netlify',
         'octohook',
         'rocketchat',
         'amazon-sqs',
+        'insightfinder',
         'la-croix-monitor',
       ].map((name, index) =>
         expect(wrapper.find('IntegrationRow').at(index).props().slug).toEqual(name)