Skip to content

Commit 3b7c828

Browse files
authored
chore: fix interverted condition in formatLighthouseReport.js (#10528)
1 parent 539412e commit 3b7c828

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

admin/scripts/formatLighthouseReport.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ const createMarkdownTableRow = ({url, summary, reportUrl}) => {
5252
Object.keys(summaryKeys)
5353
).map((k) => scoreEntry(summary[k])),
5454

55-
reportUrl ? `Report N/A` : `[Report](${reportUrl})`,
55+
// See https://github.com/facebook/docusaurus/pull/10527
56+
reportUrl ? `[Report](${reportUrl})` : `Report N/A`,
5657
];
5758

5859
return `| ${columns.join(' | ')} |`;

0 commit comments

Comments
 (0)