mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-19 16:40:48 +00:00
fix(app): disable 3 safari prompt-input annoyances (#12558)
This commit is contained in:
parent
6bdd3528ac
commit
fb331f6cb8
1 changed files with 3 additions and 0 deletions
|
|
@ -990,6 +990,9 @@ export const PromptInput: Component<PromptInputProps> = (props) => {
|
|||
aria-multiline="true"
|
||||
aria-label={placeholder()}
|
||||
contenteditable="true"
|
||||
autocapitalize="off"
|
||||
autocorrect="off"
|
||||
spellcheck={false}
|
||||
onInput={handleInput}
|
||||
onPaste={handlePaste}
|
||||
onCompositionStart={() => setComposing(true)}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue