From 6121f8905bf0b0105f1f63dd6a20847d6b36a76a Mon Sep 17 00:00:00 2001 From: Charlie Luo Date: Fri, 5 Dec 2025 09:41:29 -0800 Subject: [PATCH 1/3] feat: scaffold for new buttons --- .../views/issueList/pages/dynamicGrouping.tsx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/static/app/views/issueList/pages/dynamicGrouping.tsx b/static/app/views/issueList/pages/dynamicGrouping.tsx index eb662386769b01..b2aa40f2cb404c 100644 --- a/static/app/views/issueList/pages/dynamicGrouping.tsx +++ b/static/app/views/issueList/pages/dynamicGrouping.tsx @@ -31,6 +31,7 @@ import { IconClock, IconClose, IconCopy, + IconEllipsis, IconFire, IconFix, IconSeer, @@ -520,6 +521,34 @@ function ClusterCard({ {t('View All Issues') + ` (${cluster.group_ids.length})`} + {}, + }, + { + key: 'archive', + label: t('Archive'), + onAction: () => {}, + }, + { + key: 'dismiss', + label: t('Dismiss'), + onAction: () => {}, + }, + ]} + trigger={triggerProps => ( +