Skip to content

Commit 9a0534a

Browse files
authored
refactor: marking startTime as optional (#827)
1 parent d1428d0 commit 9a0534a

File tree

1 file changed

+1
-1
lines changed
  • projects/distributed-tracing/src/shared/components/span-detail

1 file changed

+1
-1
lines changed

projects/distributed-tracing/src/shared/components/span-detail/span-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ export interface SpanData {
1313
tags: Dictionary<unknown>;
1414
requestUrl: string;
1515
exitCallsBreakup?: Dictionary<string>;
16-
startTime: number;
16+
startTime?: number;
1717
logEvents?: LogEvent[];
1818
}

0 commit comments

Comments
 (0)