|
|
@@ -358,6 +358,7 @@ const CodeMirrorSearchForm: FC = () => {
|
|
|
id={caseSensitiveId}
|
|
|
name="caseSensitive"
|
|
|
type="checkbox"
|
|
|
+ autoComplete="off"
|
|
|
checked={query.caseSensitive}
|
|
|
onChange={handleChange}
|
|
|
onClick={focusSearchBox}
|
|
|
@@ -369,6 +370,7 @@ const CodeMirrorSearchForm: FC = () => {
|
|
|
id={regexpId}
|
|
|
name="regexp"
|
|
|
type="checkbox"
|
|
|
+ autoComplete="off"
|
|
|
checked={query.regexp}
|
|
|
onChange={handleChange}
|
|
|
onClick={focusSearchBox}
|
|
|
@@ -380,6 +382,7 @@ const CodeMirrorSearchForm: FC = () => {
|
|
|
id={wholeWordId}
|
|
|
name="wholeWord"
|
|
|
type="checkbox"
|
|
|
+ autoComplete="off"
|
|
|
checked={query.wholeWord}
|
|
|
onChange={handleChange}
|
|
|
onClick={focusSearchBox}
|
|
|
@@ -391,6 +394,7 @@ const CodeMirrorSearchForm: FC = () => {
|
|
|
id={withinSelectionId}
|
|
|
name="withinSelection"
|
|
|
type="checkbox"
|
|
|
+ autoComplete="off"
|
|
|
checked={!!query.scope}
|
|
|
onChange={handleWithinSelectionChange}
|
|
|
onClick={focusSearchBox}
|