Skip to content

Commit

Permalink
add links to docs pages
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan953 committed Mar 3, 2025
1 parent eb9ff55 commit e828c36
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions static/app/views/replays/replayTable/headerCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,19 @@ function HeaderCell({column, sort}: Props) {
sort={sort}
fieldName="count_errors"
label={t('Errors')}
tooltip={t(
'The error count only reflects errors generated within the Replay SDK. Inbound Filters may have prevented those errors from being saved. Backend and other error types may have been added afterwards.'
tooltip={tct(
'The error count only reflects errors generated within the Replay SDK. [inboundFilters:Inbound Filters] may have prevented those errors from being saved. [perfIssue:Performance] and other [replayIssue:error] types may have been added afterwards.',
{
inboundFilters: (
<ExternalLink href="https://docs.sentry.io/concepts/data-management/filtering/" />
),
replayIssue: (
<ExternalLink href="https://docs.sentry.io/product/issues/issue-details/replay-issues/" />
),
perfIssue: (
<ExternalLink href="https://docs.sentry.io/product/issues/issue-details/performance-issues/" />
),
}
)}
/>
);
Expand Down

0 comments on commit e828c36

Please sign in to comment.