From 621952db3fb2412ec3b985d8499347c9e93a8d7c Mon Sep 17 00:00:00 2001 From: Malachi Willey Date: Mon, 10 Nov 2025 14:29:42 -0800 Subject: [PATCH] feat(ai-consent): Add tooltip to issue summary --- static/app/components/group/groupSummary.tsx | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/static/app/components/group/groupSummary.tsx b/static/app/components/group/groupSummary.tsx index 52164e7db8fd66..1187c38ce88cec 100644 --- a/static/app/components/group/groupSummary.tsx +++ b/static/app/components/group/groupSummary.tsx @@ -2,6 +2,9 @@ import {isValidElement, useEffect, useLayoutEffect, useState} from 'react'; import styled from '@emotion/styled'; import {motion} from 'framer-motion'; +import {ExternalLink} from '@sentry/scraps/link'; +import {Tooltip} from '@sentry/scraps/tooltip'; + import {Button} from 'sentry/components/core/button'; import {Flex} from 'sentry/components/core/layout'; import {Text} from 'sentry/components/core/text'; @@ -15,7 +18,7 @@ import { IconRefresh, IconSpan, } from 'sentry/icons'; -import {t} from 'sentry/locale'; +import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; import type {Event} from 'sentry/types/event'; import type {Group} from 'sentry/types/group'; @@ -214,7 +217,20 @@ function GroupSummaryPreview({ {card.icon} - {card.title} + + ), + } + )} + showUnderline + isHoverable + > + {card.title} +