Skip to content

Commit

Permalink
Fix copy paste error for file size comparison (facebook#12040)
Browse files Browse the repository at this point in the history
  • Loading branch information
esbena authored and gaearon committed Jan 18, 2018
1 parent d364758 commit bd6b533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dangerfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit bd6b533

Please sign in to comment.