Skip to content
This repository has been archived by the owner on Feb 3, 2025. It is now read-only.

Commit

Permalink
Fix TTFB sub part name
Browse files Browse the repository at this point in the history
  • Loading branch information
tunetheweb committed May 1, 2024
1 parent 23dee41 commit 4302f86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/browser_action/vitals.js
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
}
console.log('LCP element:', metric.attribution.lcpEntry.element);
console.table([{
'LCP sub-part': 'Time to First Byte',
'LCP sub-part': 'Time to first byte',
'Time (ms)': Math.round(metric.attribution.timeToFirstByte, 0),
}, {
'LCP sub-part': 'Resource load delay',
Expand All @@ -301,7 +301,7 @@
}
console.log('FCP loadState:', metric.attribution.loadState);
console.table([{
'FCP sub-part': 'Time to First Byte',
'FCP sub-part': 'Time to first byte',
'Time (ms)': Math.round(metric.attribution.timeToFirstByte, 0),
}, {
'FCP sub-part': 'FCP render delay',
Expand Down

0 comments on commit 4302f86

Please sign in to comment.