mirror of
https://github.com/morgan9e/chatgpt-web
synced 2026-04-13 16:04:05 +09:00
Disable autocomplete on API key
This commit is contained in:
@@ -28,7 +28,14 @@
|
||||
}}
|
||||
>
|
||||
<p class="control is-expanded">
|
||||
<input aria-label="OpenAI API key" type="password" class="input" class:is-danger={!apiKey} value={apiKey} />
|
||||
<input
|
||||
aria-label="OpenAI API key"
|
||||
type="password"
|
||||
autocomplete="off"
|
||||
class="input"
|
||||
class:is-danger={!apiKey}
|
||||
value={apiKey}
|
||||
/>
|
||||
</p>
|
||||
<p class="control">
|
||||
<button class="button is-info" type="submit">Save</button>
|
||||
|
||||
Reference in New Issue
Block a user