Skip to content

Commit

Permalink
Further edits.
Browse files Browse the repository at this point in the history
  • Loading branch information
szabosteve committed Sep 2, 2021
1 parent 7beaea5 commit d9e0d3f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ import { EuiCallOut, EuiHorizontalRule, EuiLink } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import React from 'react';
import { Transaction } from '../../../../../../../../typings/es_schemas/ui/transaction';
import { ElasticDocsLink } from '../../../../../../shared/Links/ElasticDocsLink';
import { useApmPluginContext } from '../../../context/apm_plugin/use_apm_plugin_context';

export function DroppedSpansWarning({
transactionDoc,
}: {
transactionDoc: Transaction;
}) {
const { docLinks } = useApmPluginContext().core;
const dropped = transactionDoc.transaction.span_count?.dropped;
if (!dropped) {
return null;
Expand Down

0 comments on commit d9e0d3f

Please sign in to comment.