rename lcp/fcp

This commit is contained in:
soulgalore 2020-05-15 14:26:53 +02:00
parent 9e98697580
commit ffe6745f2d
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ function getMetricsFromBrowsertime(data) {
) {
metrics.push({
metric: 'first-contentful-paint',
name: 'FCP',
name: 'First Contentful Paint',
value: data.timings.paintTiming['first-contentful-paint']
});
}
@ -85,7 +85,7 @@ function getMetricsFromBrowsertime(data) {
) {
metrics.push({
metric: 'largestContentfulPaint',
name: 'LCP',
name: 'Largest Contentful Paint',
value: data.timings.largestContentfulPaint.renderTime
});
}