mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Fix trailing spaces in prometheus min step (#85507)
Fix trailing spaces in prometheus min step
This commit is contained in:
@@ -36,7 +36,7 @@ export const PromQueryBuilderOptions = React.memo<Props>(({ query, app, onChange
|
||||
};
|
||||
|
||||
const onChangeStep = (evt: React.FormEvent<HTMLInputElement>) => {
|
||||
onChange({ ...query, interval: evt.currentTarget.value });
|
||||
onChange({ ...query, interval: evt.currentTarget.value.trim() });
|
||||
onRunQuery();
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user