mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Chore: Change JSON file
to JSON File
for consistency with other tabs (#54453)
This commit is contained in:
parent
3b848fd91b
commit
028ba2bf95
@ -62,7 +62,7 @@ export function QueryEditor({ datasource, query, onChange, onRunQuery }: Props)
|
||||
options={[
|
||||
{ value: 'search', label: 'Search' },
|
||||
{ value: undefined, label: 'TraceID' },
|
||||
{ value: 'upload', label: 'JSON file' },
|
||||
{ value: 'upload', label: 'JSON File' },
|
||||
]}
|
||||
value={query.queryType}
|
||||
onChange={(v) =>
|
||||
|
@ -78,7 +78,7 @@ class TempoQueryFieldComponent extends React.PureComponent<Props> {
|
||||
|
||||
const queryTypeOptions: Array<SelectableValue<TempoQueryType>> = [
|
||||
{ value: 'traceId', label: 'TraceID' },
|
||||
{ value: 'upload', label: 'JSON file' },
|
||||
{ value: 'upload', label: 'JSON File' },
|
||||
{ value: 'serviceMap', label: 'Service Graph' },
|
||||
];
|
||||
|
||||
|
@ -66,7 +66,7 @@ export const ZipkinQueryField = ({ query, onChange, onRunQuery, datasource }: Pr
|
||||
<RadioButtonGroup<ZipkinQueryType>
|
||||
options={[
|
||||
{ value: 'traceID', label: 'TraceID' },
|
||||
{ value: 'upload', label: 'JSON file' },
|
||||
{ value: 'upload', label: 'JSON File' },
|
||||
]}
|
||||
value={query.queryType || 'traceID'}
|
||||
onChange={(v) =>
|
||||
|
Loading…
Reference in New Issue
Block a user