Skip to content

Commit

Permalink
Merge pull request #102 from rahulsom/master
Browse files Browse the repository at this point in the history
style: Use monospace font to render Disk Usage and Amount
  • Loading branch information
PierreBtz authored Oct 12, 2024
2 parents 3f46a74 + e5c3e11 commit 47f4ee8
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,13 @@
</td>
<td style="text-align: right">
<j:choose>
<j:when test="${e.usage > 0}">${e.usage}</j:when>
<j:when test="${e.usage > 0}"><code>${e.usage}</code></j:when>
<j:otherwise>N/A</j:otherwise>
</j:choose>
</td>
<td style="text-align: right">
<j:choose>
<j:when test="${e.count > 0}">${e.count}</j:when>
<j:when test="${e.count > 0}"><code>${e.count}</code></j:when>
<j:otherwise>N/A</j:otherwise>
</j:choose>
</td>
Expand Down

0 comments on commit 47f4ee8

Please sign in to comment.