Skip to content

Commit 8c700d4

Browse files
committed
fix(settings): set autoComplete=off on the shared settings search field
Keeps browsers from offering saved-credential autofill in a filter box — the lightweight standard guard, distinct from the removed read-only/preventAutofill machinery. Matters most on the secrets page.
1 parent c80d9a8 commit 8c700d4

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

apps/sim/app/workspace/[workspaceId]/settings/components/settings-panel/settings-panel.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ export function SettingsPanel({
112112
value={search.value}
113113
onChange={(event) => search.onChange(event.target.value)}
114114
disabled={search.disabled}
115+
autoComplete='off'
115116
className='w-full'
116117
/>
117118
)}

0 commit comments

Comments
 (0)