Skip to content

Commit

Permalink
fix opportunity byte granularity
Browse files Browse the repository at this point in the history
  • Loading branch information
brendankenny committed May 22, 2018
1 parent 97e4028 commit f0a69d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lighthouse-core/report/html/renderer/details-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ class DetailsRenderer {
}
case 'bytes': {
const numValue = /** @type {number} */ (value);
itemElement = this._renderBytes({value: numValue});
itemElement = this._renderBytes({value: numValue, granularity: 1});
break;
}
case 'thumbnail': {
Expand Down

0 comments on commit f0a69d2

Please sign in to comment.