Skip to content

Commit

Permalink
Clarify block size tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
bitjson committed Nov 16, 2023
1 parent cc39d40 commit 2ab3187
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/includes/blocks-list.pug
Expand Up @@ -115,7 +115,7 @@ div.table-responsive
- var fullPercent = fullRatio.times(100).toDecimalPlaces(1);
- var formattedSize = utils.formatLargeNumber(block.size, 4);
- var abbr = formattedSize[1].abbreviation || "";
- var toolTip = `${formattedSize[0]} ${abbr}B`;
- var toolTip = `Size: ${formattedSize[0]} ${abbr}B`;

span.border-dotted(title=toolTip, data-toggle="tooltip") #{fullPercent}%
span
Expand Down

0 comments on commit 2ab3187

Please sign in to comment.