mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 01:08:28 +02:00
Fix text input autocomplete not working with completionOptions (#368)
This commit is contained in:
@@ -317,7 +317,7 @@ function TextArg({
|
|||||||
autocompleteFunctions,
|
autocompleteFunctions,
|
||||||
autocompleteVariables,
|
autocompleteVariables,
|
||||||
};
|
};
|
||||||
if (autocompleteVariables || autocompleteFunctions) {
|
if (autocompleteVariables || autocompleteFunctions || arg.completionOptions) {
|
||||||
return <Input {...props} />;
|
return <Input {...props} />;
|
||||||
}
|
}
|
||||||
return <PlainInput {...props} />;
|
return <PlainInput {...props} />;
|
||||||
|
|||||||
Reference in New Issue
Block a user