We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea8587 commit dfc77f0Copy full SHA for dfc77f0
src/components/Forms/Formik/FormikResourceSelectorDropdown.tsx
@@ -191,6 +191,12 @@ export default function FormikResourceSelectorDropdown({
191
isLoading={isLoading || isRefetching}
192
className="h-full rounded-md border-gray-300 shadow-sm focus:border-blue-500 focus:ring-blue-500 sm:text-sm"
193
options={options}
194
+ noOptionsMessage={(input) => {
195
+ if (input.inputValue) {
196
+ return "No options found";
197
+ }
198
+ return "Start typing to search";
199
+ }}
200
value={value}
201
onChange={(value: any) => {
202
field.onChange({
0 commit comments