fix(ux): autofill off for certain inputs

This commit is contained in:
Emir Karabeg
2025-02-21 17:50:49 -08:00
parent 04ebb8346f
commit 054777d03c
2 changed files with 3 additions and 0 deletions
@@ -200,6 +200,7 @@ export function EnvironmentVariables({ onOpenChange }: EnvironmentVariablesProps
onChange={(e) => updateEnvVar(index, 'key', e.target.value)}
onPaste={(e) => handlePaste(e, index)}
placeholder="e.g. API_KEY"
autoComplete="off"
/>
<Input
data-input-type="value"
@@ -212,6 +213,7 @@ export function EnvironmentVariables({ onOpenChange }: EnvironmentVariablesProps
onPaste={(e) => handlePaste(e, index)}
placeholder="Enter value"
className="allow-scroll"
autoComplete="off"
/>
<Button variant="ghost" size="icon" onClick={() => removeEnvVar(index)} className="h-10 w-10">
×
+1
View File
@@ -56,6 +56,7 @@ export function Toolbar() {
className="pl-9"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
autoComplete="off"
/>
</div>
</div>