We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecfaff2 commit 1199adaCopy full SHA for 1199ada
src/plugins/ui_actions/public/actions/create_action.ts
@@ -43,6 +43,8 @@ export function createAction<T extends ActionType>(
43
): ActionByType<T> {
44
return {
45
getIconType: () => undefined,
46
+ getTooltip: () => '',
47
+ isDisabled: () => false,
48
order: 0,
49
id: action.type,
50
isCompatible: () => Promise.resolve(true),
src/plugins/ui_actions/public/context_menu/build_eui_context_menu_panels.tsx
@@ -221,7 +221,6 @@ export async function buildContextMenuForActions({
221
_title: action.getDisplayName(context),
222
});
223
224
-
225
await Promise.all(promises);
226
227
// For each panel, sort items by order and title
0 commit comments