We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20ca9a2 commit af0fa71Copy full SHA for af0fa71
src/core/LogEvent.ts
@@ -18,7 +18,7 @@ export class LogEvent {
18
private _startTime = new Date();
19
20
get startTime(): Date {
21
- return this._startTime;
+ return this.data && this.data[0] && this.data[0].time ? this.data[0].time : this._startTime;
22
}
23
24
public get categoryName(): string {
0 commit comments