Skip to content

Commit

Permalink
Stop renaming methods
Browse files Browse the repository at this point in the history
  • Loading branch information
scottybollinger committed Sep 2, 2020
1 parent 4275377 commit 12d2754
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { FormattedMessage } from '@kbn/i18n/react';
import { ContentSection } from '../../components/shared/content_section';
import { sendTelemetry } from '../../../shared/telemetry';
import { KibanaContext, IKibanaContext } from '../../../index';
import { SOURCE_DETAILS_PATH, getContentSourcePath as sourcePath } from '../../routes';
import { SOURCE_DETAILS_PATH, getContentSourcePath } from '../../routes';

import { OverviewLogic } from './overview_logic';

Expand Down Expand Up @@ -107,7 +107,7 @@ export const RecentActivityItem: React.FC<IFeedActivity> = ({
const linkProps = {
onClick,
target: '_blank',
href: getWorkplaceSearchUrl(sourcePath(SOURCE_DETAILS_PATH, sourceId, true)),
href: getWorkplaceSearchUrl(getContentSourcePath(SOURCE_DETAILS_PATH, sourceId, true)),
external: true,
color: status === 'error' ? 'danger' : 'primary',
'data-test-subj': 'viewSourceDetailsLink',
Expand Down

0 comments on commit 12d2754

Please sign in to comment.