Data: Prefix trace types in data package (#25810)

This commit is contained in:
Zoltán Bedi
2020-06-24 20:58:42 +02:00
committed by GitHub
parent 615b000acd
commit 271cc67038
35 changed files with 167 additions and 164 deletions

View File

@ -13,11 +13,11 @@
// limitations under the License.
import React from 'react';
import { SpanReference } from '@grafana/data';
import { TraceSpanReference } from '@grafana/data';
import ExternalLinkContext from './externalLinkContext';
type ReferenceLinkProps = {
reference: SpanReference;
reference: TraceSpanReference;
children: React.ReactNode;
className?: string;
focusSpan: (spanID: string) => void;