mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	Forms: Allow custom value creation in async select (#21759)
This commit is contained in:
		| @@ -6,6 +6,8 @@ import { default as ReactSelect } from '@torkelo/react-select'; | ||||
| import Creatable from '@torkelo/react-select/creatable'; | ||||
| // @ts-ignore | ||||
| import { default as ReactAsyncSelect } from '@torkelo/react-select/async'; | ||||
| // @ts-ignore | ||||
| import { default as AsyncCreatable } from '@torkelo/react-select/async-creatable'; | ||||
|  | ||||
| import { Icon } from '../../Icon/Icon'; | ||||
| import { css, cx } from 'emotion'; | ||||
| @@ -243,7 +245,7 @@ export function SelectBase<T>({ | ||||
|  | ||||
|   // Instead of having AsyncSelect, as a separate component we render ReactAsyncSelect | ||||
|   if (loadOptions) { | ||||
|     ReactSelectComponent = ReactAsyncSelect; | ||||
|     ReactSelectComponent = allowCustomValue ? AsyncCreatable : ReactAsyncSelect; | ||||
|     asyncSelectProps = { | ||||
|       loadOptions, | ||||
|       defaultOptions, | ||||
|   | ||||
		Reference in New Issue
	
	Block a user