diff --git a/example/package/react-autoql-0.0.0-semantically-released.tgz b/example/package/react-autoql-0.0.0-semantically-released.tgz index 3ce3c2a65..00ce3dcaf 100644 Binary files a/example/package/react-autoql-0.0.0-semantically-released.tgz and b/example/package/react-autoql-0.0.0-semantically-released.tgz differ diff --git a/src/components/Dashboard/DashboardTile/DashboardTile.js b/src/components/Dashboard/DashboardTile/DashboardTile.js index 1bd715998..eb379e8ef 100644 --- a/src/components/Dashboard/DashboardTile/DashboardTile.js +++ b/src/components/Dashboard/DashboardTile/DashboardTile.js @@ -655,6 +655,7 @@ export class DashboardTile extends React.Component { data-tip="Query" data-for="react-autoql-dashboard-toolbar-btn-tooltip" data-place="bottom" + spellCheck={false} onChange={this.onQueryInputChange} onKeyDown={this.onQueryTextKeyDown} onFocus={() => this.setState({ isQueryInputFocused: true })} @@ -877,6 +878,7 @@ export class DashboardTile extends React.Component { this.state.isSecondQueryInputOpen ? 'open' : '' }`} value={this.state.secondQuery} + spellCheck={false} onChange={this.onSecondQueryInputChange} onKeyDown={this.onSecondQueryTextKeyDown} onBlur={(e) => { diff --git a/src/components/ExploreQueries/ExploreQueries.js b/src/components/ExploreQueries/ExploreQueries.js index f0526b43b..2a005f5da 100644 --- a/src/components/ExploreQueries/ExploreQueries.js +++ b/src/components/ExploreQueries/ExploreQueries.js @@ -285,6 +285,7 @@ export class ExploreQueries extends React.Component { value={this.state.inputValue} onChange={this.onInputChange} onKeyPress={this.onKeyPress} + spellCheck={false} ref={(ref) => (this.inputRef = ref)} data-test="explore-queries-input-bar" autoFocus diff --git a/src/components/QueryInput/QueryInput.js b/src/components/QueryInput/QueryInput.js index 63d396a55..818a0a728 100644 --- a/src/components/QueryInput/QueryInput.js +++ b/src/components/QueryInput/QueryInput.js @@ -411,6 +411,7 @@ class QueryInput extends React.Component { onKeyDown: this.onKeyDown, value: this.state.inputValue, onFocus: this.moveCaretAtEnd, + spellCheck: false, autoFocus: true, }