File tree Expand file tree Collapse file tree
x-pack/platform/plugins/shared/cases/public/components/all_cases Expand file tree Collapse file tree Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments