From 8a339fd1712b81d73217e0a89db27a95846dcd31 Mon Sep 17 00:00:00 2001 From: Haruka Date: Mon, 30 Oct 2023 00:41:50 +0900 Subject: [PATCH] show 0 instead of - on index page --- webui/templates/htmx/index.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/templates/htmx/index.jinja2 b/webui/templates/htmx/index.jinja2 index fcbafc68..94abe3e4 100644 --- a/webui/templates/htmx/index.jinja2 +++ b/webui/templates/htmx/index.jinja2 @@ -75,7 +75,7 @@ {{ block.block_reward | format_aleo_credit | safe }} {{ (block.coinbase_reward // 2) | format_aleo_credit | safe }} {% if not "DEBUG_SKIP_COINBASE" | get_env %} - {% if block.coinbase_reward %}{{ block.partial_solution_count }}{% else %}-{% endif %} + {{ block.partial_solution_count }} {% endif %} {% endfor %}