mirror of https://github.com/prometheus/prometheus
web/ui: Hitting enter on range input creates a new query (#8581)
Signed-off-by: Matthias Loibl <mail@matthiasloibl.com>pull/8587/head
parent
3e17eaada5
commit
369aae93a8
|
@ -101,6 +101,9 @@ class GraphControls extends Component<GraphControlsProps> {
|
||||||
defaultValue={formatDuration(this.props.range)}
|
defaultValue={formatDuration(this.props.range)}
|
||||||
innerRef={this.rangeRef}
|
innerRef={this.rangeRef}
|
||||||
onBlur={() => this.onChangeRangeInput(this.rangeRef.current!.value)}
|
onBlur={() => this.onChangeRangeInput(this.rangeRef.current!.value)}
|
||||||
|
onKeyDown={(e: React.KeyboardEvent<HTMLInputElement>) =>
|
||||||
|
e.key === 'Enter' && this.onChangeRangeInput(this.rangeRef.current!.value)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
<InputGroupAddon addonType="append">
|
<InputGroupAddon addonType="append">
|
||||||
|
|
Loading…
Reference in New Issue