Disable all types of autocorrect, -complete, -capitalize, etc on Spotlight's search field (#9259)
This commit is contained in:
parent
c76cc9aee1
commit
851606c7ed
1 changed files with 3 additions and 0 deletions
|
@ -1221,6 +1221,9 @@ const SpotlightDialog: React.FC<IProps> = ({ initialText = "", initialFilter = n
|
||||||
autoFocus
|
autoFocus
|
||||||
type="text"
|
type="text"
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
|
autoCapitalize="off"
|
||||||
|
autoCorrect="off"
|
||||||
|
spellCheck="false"
|
||||||
placeholder={_t("Search")}
|
placeholder={_t("Search")}
|
||||||
value={query}
|
value={query}
|
||||||
onChange={setQuery}
|
onChange={setQuery}
|
||||||
|
|
Loading…
Reference in a new issue