Skip to content

Commit 50ce2a6

Browse files
committed
remove link to alert details
1 parent 1a00c2e commit 50ce2a6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

static/app/views/alerts/list/rules/activatedRuleRow.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ import type {MenuItemProps} from 'sentry/components/dropdownMenu';
1313
import {DropdownMenu} from 'sentry/components/dropdownMenu';
1414
import ErrorBoundary from 'sentry/components/errorBoundary';
1515
import IdBadge from 'sentry/components/idBadge';
16-
import Link from 'sentry/components/links/link';
1716
import LoadingIndicator from 'sentry/components/loadingIndicator';
1817
import TextOverflow from 'sentry/components/textOverflow';
1918
import TimeSince from 'sentry/components/timeSince';
@@ -260,9 +259,7 @@ function ActivatedRuleListRow({
260259
<AlertNameWrapper>
261260
<AlertNameAndStatus>
262261
<AlertName>
263-
<Link to={`/organizations/${orgId}/alerts/rules/details/${rule.id}/`}>
264-
{rule.name}
265-
</Link>
262+
<div>{rule.name}</div>
266263
</AlertName>
267264
<AlertActivationDate>{renderLatestActivation()}</AlertActivationDate>
268265
</AlertNameAndStatus>

0 commit comments

Comments
 (0)