From d10637fefb69d507445b74fd3dcc4e9d4ebe57c1 Mon Sep 17 00:00:00 2001 From: Richard Roggenkemper <46740234+roggenkemper@users.noreply.github.com> Date: Mon, 3 Mar 2025 11:37:01 -0800 Subject: [PATCH] chore(issue-details): Update All Events copy (#86104) update all events copy to reflect that it shows matching events, not all events on an issue --- .../app/views/issueDetails/streamline/eventNavigation.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/static/app/views/issueDetails/streamline/eventNavigation.tsx b/static/app/views/issueDetails/streamline/eventNavigation.tsx index 3a890f27418e1d..adc51e1d5fad91 100644 --- a/static/app/views/issueDetails/streamline/eventNavigation.tsx +++ b/static/app/views/issueDetails/streamline/eventNavigation.tsx @@ -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)} )} {issueTypeConfig.pages.openPeriods.enabled && ( @@ -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')} )} {issueTypeConfig.pages.checkIns.enabled && ( @@ -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')} )} {issueTypeConfig.pages.uptimeChecks.enabled && ( @@ -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')} )}