Skip to content

Commit

Permalink
format large number for address speed
Browse files Browse the repository at this point in the history
  • Loading branch information
HarukaMa committed Sep 11, 2024
1 parent d2111b7 commit b5387be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webui/templates/htmx/address.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
{% endcall %}
{% call data_line("Estimated speed") %}
{% if speed != 0 %}
{{ "%.2f" % speed }} <span data-tippy-content="Solutions per second, see FAQ for more info">s/s</span> (last {{ timespan }})
{{ speed | format_large_number | safe }}<span data-tippy-content="Solutions per second, see FAQ for more info">s/s</span> (last {{ timespan }})
{% else %}
Not enough solutions during last day
{% endif %}
Expand Down

0 comments on commit b5387be

Please sign in to comment.