From b4188b1bcb70e2b4afa4ea02fac6f786c89d9ba0 Mon Sep 17 00:00:00 2001 From: Gian <58370608+glpecile@users.noreply.github.com> Date: Thu, 6 Jun 2024 18:56:06 -0300 Subject: [PATCH] refactor: rename is verified to status and update true/false to verified/pending (#327) --- .../lib/explorer_web/live/pages/batches/index.html.heex | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/explorer/lib/explorer_web/live/pages/batches/index.html.heex b/explorer/lib/explorer_web/live/pages/batches/index.html.heex index b52af010f..c681b3a87 100644 --- a/explorer/lib/explorer_web/live/pages/batches/index.html.heex +++ b/explorer/lib/explorer_web/live/pages/batches/index.html.heex @@ -9,7 +9,7 @@ Batch Merkle Root Block Number - Is verified + Status @@ -41,7 +41,10 @@ false -> "text-white bg-secondary group-hover:bg-secondary/80" end ]}> - <%= batch.responded %> + <%= case batch.responded do + true -> "Verified" + false -> "Pending" + end %>