Commit cc0a8464 by Torkel Ödegaard Committed by GitHub

QueryOptions: Fix not being able to change cache timeout setting (#26614)

parent 76230215
...@@ -160,8 +160,8 @@ export class QueryOptions extends PureComponent<Props, State> { ...@@ -160,8 +160,8 @@ export class QueryOptions extends PureComponent<Props, State> {
placeholder="60" placeholder="60"
name={name} name={name}
spellCheck={false} spellCheck={false}
onBlur={this.onDataSourceOptionBlur('maxDataPoints')} onBlur={this.onDataSourceOptionBlur('cacheTimeout')}
onChange={this.onDataSourceOptionChange('maxDataPoints')} onChange={this.onDataSourceOptionChange('cacheTimeout')}
value={cacheTimeout} value={cacheTimeout}
/> />
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment