/usr/share/grafana/public/app/plugins/datasource/tempo/SearchTraceQLEditor
import * as React from 'react'; import { InlineFieldRow, InlineField } from '@grafana/ui'; interface Props { label: string; tooltip?: string; children: React.ReactElement; } const SearchField = ({ label, tooltip, children }: Props) => { return ( <InlineFieldRow> <InlineField label={label} labelWidth={28} grow tooltip={tooltip}> {children} </InlineField> </InlineFieldRow> ); }; export default SearchField;
.
Edit
..
Edit
AggregateByAlert.tsx
Edit
DurationInput.tsx
Edit
InlineSearchField.tsx
Edit
SearchField.test.tsx
Edit
SearchField.tsx
Edit
TagsInput.test.tsx
Edit
TagsInput.tsx
Edit
TraceQLSearch.test.tsx
Edit
TraceQLSearch.tsx
Edit
mocks.ts
Edit
utils.test.ts
Edit
utils.ts
Edit