Skip to content

Commit

Permalink
chore(issue-details): Update All Events copy (#86104)
Browse files Browse the repository at this point in the history
update all events copy to reflect that it shows matching events, not all
events on an issue
  • Loading branch information
roggenkemper authored Mar 3, 2025
1 parent cd24681 commit d10637f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions static/app/views/issueDetails/streamline/eventNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ export function IssueEventNavigation({event, group}: IssueEventNavigationProps)
analyticsEventKey="issue_details.all_events_clicked"
analyticsEventName="Issue Details: All Events Clicked"
>
{t('All %s', issueTypeConfig.customCopy.eventUnits)}
{t('View More %s', issueTypeConfig.customCopy.eventUnits)}
</LinkButton>
)}
{issueTypeConfig.pages.openPeriods.enabled && (
Expand All @@ -214,7 +214,7 @@ export function IssueEventNavigation({event, group}: IssueEventNavigationProps)
analyticsEventKey="issue_details.all_open_periods_clicked"
analyticsEventName="Issue Details: All Open Periods Clicked"
>
{t('All Open Periods')}
{t('View More Open Periods')}
</LinkButton>
)}
{issueTypeConfig.pages.checkIns.enabled && (
Expand All @@ -227,7 +227,7 @@ export function IssueEventNavigation({event, group}: IssueEventNavigationProps)
analyticsEventKey="issue_details.all_checks_ins_clicked"
analyticsEventName="Issue Details: All Checks-Ins Clicked"
>
{t('All Check-Ins')}
{t('View More Check-Ins')}
</LinkButton>
)}
{issueTypeConfig.pages.uptimeChecks.enabled && (
Expand All @@ -240,7 +240,7 @@ export function IssueEventNavigation({event, group}: IssueEventNavigationProps)
analyticsEventKey="issue_details.all_uptime_checks_clicked"
analyticsEventName="Issue Details: All Uptime Checks Clicked"
>
{t('All Uptime Checks')}
{t('View More Uptime Checks')}
</LinkButton>
)}
</Fragment>
Expand Down

0 comments on commit d10637f

Please sign in to comment.