Skip to content

Commit

Permalink
Merge pull request #3271 from faush01/feature/nobreak_in_stats
Browse files Browse the repository at this point in the history
no line breaks in size text
  • Loading branch information
advplyr committed Aug 15, 2024
2 parents 1c27486 + d5712a5 commit f158217
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/pages/library/_library/stats.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<div class="bg-yellow-400 h-full rounded-full" :style="{ width: Math.round((100 * ab.size) / largestItemSize) + '%' }" />
</div>
<div class="w-4 ml-3">
<p class="text-sm font-bold">{{ $bytesPretty(ab.size) }}</p>
<p class="text-sm font-bold whitespace-nowrap">{{ $bytesPretty(ab.size) }}</p>
</div>
</div>
</div>
Expand Down

0 comments on commit f158217

Please sign in to comment.