mirror of
https://github.com/simstudioai/sim.git
synced 2026-04-06 03:00:16 -04:00
autofill fixes
This commit is contained in:
@@ -236,6 +236,7 @@ export function AddConnectorModal({ open, onOpenChange, knowledgeBaseId }: AddCo
|
||||
</Label>
|
||||
<Input
|
||||
type='password'
|
||||
autoComplete='new-password'
|
||||
value={apiKeyValue}
|
||||
onChange={(e) => setApiKeyValue(e.target.value)}
|
||||
placeholder={
|
||||
|
||||
@@ -630,6 +630,7 @@ export const NotificationSettings = memo(function NotificationSettings({
|
||||
<EmcnInput
|
||||
type='url'
|
||||
placeholder='https://your-app.com/webhook'
|
||||
autoComplete='off'
|
||||
value={formData.webhookUrl}
|
||||
onChange={(e) => {
|
||||
setFormData({ ...formData, webhookUrl: e.target.value })
|
||||
@@ -645,6 +646,7 @@ export const NotificationSettings = memo(function NotificationSettings({
|
||||
<EmcnInput
|
||||
type='password'
|
||||
placeholder='Webhook secret for signature verification'
|
||||
autoComplete='new-password'
|
||||
value={formData.webhookSecret}
|
||||
onChange={(e) => setFormData({ ...formData, webhookSecret: e.target.value })}
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user