mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Fix copy paste error for file size comparison (#12040)
This commit is contained in:
committed by
Dan Abramov
parent
d3647583b3
commit
bd6b533c29
+1
-1
@@ -106,7 +106,7 @@ fetch(commitURL(parentOfOldestCommit)).then(async response => {
|
||||
for (var name of new Set(packagesToShow)) {
|
||||
const thisBundleResults = results.filter(r => r.packageName === name);
|
||||
const changedFiles = thisBundleResults.filter(
|
||||
r => r.prevGzipSizeChange !== 0 || r.prevGzipSizeChange !== 0
|
||||
r => r.prevFileSizeChange !== 0 || r.prevGzipSizeChange !== 0
|
||||
);
|
||||
|
||||
const mdHeaders = [
|
||||
|
||||
Reference in New Issue
Block a user