|
@@ -2,6 +2,7 @@ import {RouteComponentProps} from 'react-router';
|
|
import styled from '@emotion/styled';
|
|
import styled from '@emotion/styled';
|
|
|
|
|
|
import AsyncComponent from 'app/components/asyncComponent';
|
|
import AsyncComponent from 'app/components/asyncComponent';
|
|
|
|
+import ExternalLink from 'app/components/links/externalLink';
|
|
import {Panel, PanelBody, PanelHeader} from 'app/components/panels';
|
|
import {Panel, PanelBody, PanelHeader} from 'app/components/panels';
|
|
import {t, tct} from 'app/locale';
|
|
import {t, tct} from 'app/locale';
|
|
import space from 'app/styles/space';
|
|
import space from 'app/styles/space';
|
|
@@ -81,7 +82,7 @@ class TeamNotificationSettings extends AsyncView<Props, State> {
|
|
<NotDisabledSubText>
|
|
<NotDisabledSubText>
|
|
{tct('Head over to Slack and type [code] to get started. [link].', {
|
|
{tct('Head over to Slack and type [code] to get started. [link].', {
|
|
code: <code>/sentry link team</code>,
|
|
code: <code>/sentry link team</code>,
|
|
- link: <a href={DOCS_LINK}>{t('Learn more')}</a>,
|
|
|
|
|
|
+ link: <ExternalLink href={DOCS_LINK}>{t('Learn more')}</ExternalLink>,
|
|
})}
|
|
})}
|
|
</NotDisabledSubText>
|
|
</NotDisabledSubText>
|
|
</EmptyMessage>
|
|
</EmptyMessage>
|
|
@@ -105,7 +106,7 @@ class TeamNotificationSettings extends AsyncView<Props, State> {
|
|
<NotDisabledSubText>
|
|
<NotDisabledSubText>
|
|
{tct('Unlink this channel in Slack with [code]. [link].', {
|
|
{tct('Unlink this channel in Slack with [code]. [link].', {
|
|
code: <code>/sentry unlink team</code>,
|
|
code: <code>/sentry unlink team</code>,
|
|
- link: <a href={DOCS_LINK}>{t('Learn more')}</a>,
|
|
|
|
|
|
+ link: <ExternalLink href={DOCS_LINK}>{t('Learn more')}</ExternalLink>,
|
|
})}
|
|
})}
|
|
</NotDisabledSubText>
|
|
</NotDisabledSubText>
|
|
</div>
|
|
</div>
|