mirror of
https://github.com/morgan9e/chatgpt-web
synced 2026-04-14 00:14:04 +09:00
Disable autocomplete on API key
This commit is contained in:
@@ -28,7 +28,14 @@
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<p class="control is-expanded">
|
<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>
|
||||||
<p class="control">
|
<p class="control">
|
||||||
<button class="button is-info" type="submit">Save</button>
|
<button class="button is-info" type="submit">Save</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user