File tree Expand file tree Collapse file tree
packages/javascript/src/addons Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -223,9 +223,9 @@ function observeLoAF(onEntry: (e: LongTaskEvent) => void): void {
223223 [ 'startTime' , Math . round ( loaf . startTime ) ] ,
224224 [ 'durationMs' , durationMs ] ,
225225 [ 'blockingDurationMs' , blockingDurationMs ] ,
226- [ 'renderStart' , loaf . renderStart ? Math . round ( loaf . renderStart ) : null ] ,
227- [ 'styleAndLayoutStart' , loaf . styleAndLayoutStart ? Math . round ( loaf . styleAndLayoutStart ) : null ] ,
228- [ 'firstUIEventTimestamp' , loaf . firstUIEventTimestamp ? Math . round ( loaf . firstUIEventTimestamp ) : null ] ,
226+ [ 'renderStart' , loaf . renderStart != null ? Math . round ( loaf . renderStart ) : null ] ,
227+ [ 'styleAndLayoutStart' , loaf . styleAndLayoutStart != null ? Math . round ( loaf . styleAndLayoutStart ) : null ] ,
228+ [ 'firstUIEventTimestamp' , loaf . firstUIEventTimestamp != null ? Math . round ( loaf . firstUIEventTimestamp ) : null ] ,
229229 [ 'scripts' , scripts ] ,
230230 ] ) ;
231231
You can’t perform that action at this time.
0 commit comments