Skip to content

Commit

Permalink
semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhulce committed Jun 4, 2018
1 parent 3678880 commit d63f491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/gather/computed/trace-of-tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ class TraceOfTab extends ComputedArtifact {
return e.cat.includes('blink.user_timing') ||
e.cat.includes('loading') ||
e.cat.includes('devtools.timeline') ||
e.cat === '__metadata'
e.cat === '__metadata';
})
// @ts-ignore - stableSort added to Array by WebInspector.
.stableSort((event0, event1) => event0.ts - event1.ts);
Expand Down

0 comments on commit d63f491

Please sign in to comment.