Browse Source

fix(escalating): Change for review tab tooltip copy (#49626)

Scott Cooper 1 year ago
parent
commit
2981c5968e
1 changed files with 5 additions and 2 deletions
  1. 5 2
      static/app/views/issueList/utils.tsx

+ 5 - 2
static/app/views/issueList/utils.tsx

@@ -60,8 +60,11 @@ export function getTabs(organization: Organization) {
         analyticsName: 'needs_review',
         count: true,
         enabled: true,
-        tooltipTitle:
-          t(`Issues are marked for review when they are created, unresolved, or unignored.
+        tooltipTitle: hasEscalatingIssuesUi
+          ? t(
+              'Issues are marked for review if they are new or escalating, and have not been resolved or archived. Issues are automatically marked reviewed in 7 days.'
+            )
+          : t(`Issues are marked for review when they are created, unresolved, or unignored.
           Mark an issue reviewed to move it out of this list.
           Issues are automatically marked reviewed in 7 days.`),
       },