diff --git a/packages/grafana-ui/src/components/Select/types.ts b/packages/grafana-ui/src/components/Select/types.ts index 3e6d5c4fbfe..311cf4055c4 100644 --- a/packages/grafana-ui/src/components/Select/types.ts +++ b/packages/grafana-ui/src/components/Select/types.ts @@ -119,7 +119,7 @@ export interface VirtualizedSelectAsyncProps export interface MultiSelectCommonProps extends Omit, 'onChange' | 'isMulti' | 'value'> { value?: Array> | T[]; - onChange: (item: Array>) => {} | void; + onChange: (item: Array>, actionMeta: ActionMeta) => {} | void; } // This is the type of *our* SelectBase component, not ReactSelect's prop, although