File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
x-pack/plugins/advanced_ui_actions/public/components/action_wizard Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {
1212 EuiIcon ,
1313 EuiSpacer ,
1414 EuiText ,
15- EuiKeyPadMenuItemButton ,
15+ EuiKeyPadMenuItem ,
1616} from '@elastic/eui' ;
1717import { txtChangeButton } from './i18n' ;
1818import './action_wizard.scss' ;
@@ -178,7 +178,7 @@ const ActionFactorySelector: React.FC<ActionFactorySelectorProps> = ({
178178 . sort ( ( f1 , f2 ) => f1 . order - f2 . order )
179179 . map ( actionFactory => (
180180 < EuiFlexItem grow = { false } key = { actionFactory . id } >
181- < EuiKeyPadMenuItemButton
181+ < EuiKeyPadMenuItem
182182 className = "auaActionWizard__actionFactoryItem"
183183 label = { actionFactory . getDisplayName ( context ) }
184184 data-test-subj = { TEST_SUBJ_ACTION_FACTORY_ITEM }
@@ -187,7 +187,7 @@ const ActionFactorySelector: React.FC<ActionFactorySelectorProps> = ({
187187 { actionFactory . getIconType ( context ) && (
188188 < EuiIcon type = { actionFactory . getIconType ( context ) ! } size = "m" />
189189 ) }
190- </ EuiKeyPadMenuItemButton >
190+ </ EuiKeyPadMenuItem >
191191 </ EuiFlexItem >
192192 ) ) }
193193 </ EuiFlexGroup >
You can’t perform that action at this time.
0 commit comments