From d0e2358b81e1f4bd5dabbbb5ca60f234abca47c8 Mon Sep 17 00:00:00 2001 From: Chandler Prall Date: Wed, 30 Sep 2020 15:11:32 -0600 Subject: [PATCH] Fix lint issue --- src/plugins/share/public/types.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/plugins/share/public/types.ts b/src/plugins/share/public/types.ts index 63ad82515f461..19f33a820a11a 100644 --- a/src/plugins/share/public/types.ts +++ b/src/plugins/share/public/types.ts @@ -54,7 +54,8 @@ export interface ShareContext { * used to order the individual items in a flat list returned by all registered * menu providers. * */ -export interface ShareContextMenuPanelItem extends Omit { +export interface ShareContextMenuPanelItem + extends Omit { name: string; // EUI will accept a `ReactNode` for the `name` prop, but `ShareContentMenu` assumes a `string`. sortOrder?: number; }