Browse Source

fix(issues): Fix the replay-count tooltip in Issue List page (#46020)

**Before:**

![Image](https://user-images.githubusercontent.com/187460/225122853-ea8e39b9-d17b-44e1-9e9d-0501fa9df68e.png)

**After:**

![SCR-20230317-mfw](https://user-images.githubusercontent.com/187460/226067365-7e717d97-d16a-47e9-ba8f-96667d5c9945.png)


Fixes #45785
Ryan Albrecht 2 years ago
parent
commit
3b422a063e
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/components/group/issueReplayCount.tsx

+ 1 - 1
static/app/components/group/issueReplayCount.tsx

@@ -32,7 +32,7 @@ function IssueReplayCount({groupId}: Props) {
     count
   );
   return (
-    <Tooltip skipWrapper title={count > 50 ? titleOver50 : title50OrLess}>
+    <Tooltip title={count > 50 ? titleOver50 : title50OrLess}>
       <ReplayCountLink
         to={`/organizations/${organization.slug}/issues/${groupId}/replays/`}
         aria-label="replay-count"