Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
paulirish committed Sep 18, 2020
1 parent ae3c77f commit c934c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lighthouse-core/config/default-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ const defaultConfig = {
description: str_(UIStrings.diagnosticsGroupDescription),
},
'filmstrip': {
title: ''
title: '',
},
'pwa-fast-reliable': {
title: str_(UIStrings.pwaFastReliableGroupTitle),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ class PerformanceCategoryRenderer extends CategoryRenderer {
// Budgets
/** @type {Array<Element>} */
const budgetTableEls = [];
const budgetAudits = category.auditRefs.filter(audit => audit.group === 'budgets')
const budgetAudits = category.auditRefs.filter(audit => audit.group === 'budgets');
budgetAudits.forEach(audit => {
if (audit && audit.result.details) {
const table = this.detailsRenderer.render(audit.result.details);
Expand Down

0 comments on commit c934c4b

Please sign in to comment.