From 1f56ba2eb60d557e67c8a5f8065583979a0680c5 Mon Sep 17 00:00:00 2001
From: Brijmohan Siyag <157373788+brijsiyag-meesho@users.noreply.github.com>
Date: Sat, 7 Feb 2026 22:17:50 +0530
Subject: [PATCH] Fix text input autocomplete not working with
completionOptions (#368)
---
src-web/components/DynamicForm.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src-web/components/DynamicForm.tsx b/src-web/components/DynamicForm.tsx
index cab5d603..ca8bcad1 100644
--- a/src-web/components/DynamicForm.tsx
+++ b/src-web/components/DynamicForm.tsx
@@ -317,7 +317,7 @@ function TextArg({
autocompleteFunctions,
autocompleteVariables,
};
- if (autocompleteVariables || autocompleteFunctions) {
+ if (autocompleteVariables || autocompleteFunctions || arg.completionOptions) {
return ;
}
return ;