Skip to content

Commit e05aa46

Browse files
authored
fix(workflow): Add disabled text to mark reviewed dropdown (getsentry#40988)
1 parent 385ed6a commit e05aa46

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

static/app/components/group/inboxBadges/inboxReason.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ function InboxReason({inbox, fontSize = 'sm', showDateAdded}: Props) {
161161
{tooltipDescription && (
162162
<TooltipDescription>{tooltipDescription}</TooltipDescription>
163163
)}
164-
<TooltipDescription>Mark Reviewed to remove this label</TooltipDescription>
164+
<TooltipDescription>{t('Mark Reviewed to remove this label')}</TooltipDescription>
165165
</TooltipWrapper>
166166
);
167167

static/app/views/organizationGroupDetails/actions/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,8 @@ class Actions extends Component<Props> {
431431
key: 'mark-review',
432432
label: t('Mark reviewed'),
433433
disabled: !group.inbox || disabled,
434+
details:
435+
!group.inbox || disabled ? t('Issue has been reviewed') : undefined,
434436
onAction: () => this.onUpdate({inbox: false}),
435437
},
436438
{

0 commit comments

Comments
 (0)