Skip to content

Commit

Permalink
Fix memory usage display in status page template
Browse files Browse the repository at this point in the history
  • Loading branch information
DonnieBLT committed Jan 1, 2025
1 parent 1e7c39a commit 7a24d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/templates/status_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ <h3>Top Memory Consumers</h3>
<h3>Memory Usage by Module</h3>
<div class="memory-by-module">
<ul>
{% for module, memory in status.memory_by_module.items %}
{% for module, memory in status.memory_by_module %}
<li>
<strong>{{ module }}</strong>: {{ memory|filesizeformat }}
</li>
Expand Down

0 comments on commit 7a24d04

Please sign in to comment.