Skip to content

Commit e813910

Browse files
committed
Changes from node scripts/check
1 parent efc98c8 commit e813910

1 file changed

Lines changed: 15 additions & 10 deletions

File tree

  • x-pack/platform/plugins/shared/cases/public/components/all_cases

x-pack/platform/plugins/shared/cases/public/components/all_cases/use_actions.tsx

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -225,16 +225,21 @@ export const ActionColumnComponent: React.FC<{ theCase: CaseUI; disableActions:
225225
key={`case-action-popover-${theCase.id}`}
226226
data-test-subj={`case-action-popover-${theCase.id}`}
227227
button={
228-
<EuiButtonIcon
229-
onClick={togglePopover}
230-
iconType="boxesVertical"
231-
aria-label={i18n.ACTIONS_BUTTON_ARIA_LABEL(theCase.title)}
232-
color="text"
233-
key={`case-action-popover-button-${theCase.id}`}
234-
data-test-subj={`case-action-popover-button-${theCase.id}`}
235-
disabled={disableActions}
236-
buttonRef={buttonRef}
237-
/>
228+
<EuiToolTip
229+
content={i18n.ACTIONS_BUTTON_ARIA_LABEL(theCase.title)}
230+
disableScreenReaderOutput
231+
>
232+
<EuiButtonIcon
233+
onClick={togglePopover}
234+
iconType="boxesVertical"
235+
aria-label={i18n.ACTIONS_BUTTON_ARIA_LABEL(theCase.title)}
236+
color="text"
237+
key={`case-action-popover-button-${theCase.id}`}
238+
data-test-subj={`case-action-popover-button-${theCase.id}`}
239+
disabled={disableActions}
240+
buttonRef={buttonRef}
241+
/>
242+
</EuiToolTip>
238243
}
239244
isOpen={isPopoverOpen}
240245
closePopover={closePopover}

0 commit comments

Comments
 (0)