We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a19fee commit 6f7cf46Copy full SHA for 6f7cf46
packages/jaeger-ui/src/components/TracePage/TraceStatistics/tableValues.tsx
@@ -23,7 +23,7 @@ const serviceName = 'Service Name';
23
const operationName = 'Operation Name';
24
25
function parentChildOfMap(allSpans: Span[]): Record<string, Span[]> {
26
- let parentChildOfMap = {};
+ const parentChildOfMap: Record<string, Span[]> = {};
27
allSpans.forEach(s => {
28
if (s.references) {
29
// Filter for CHILD_OF we don't want to calculate FOLLOWS_FROM (prod-cons)
0 commit comments