Skip to content

Commit

Permalink
refactor: rename is verified to status and update true/false to verif…
Browse files Browse the repository at this point in the history
…ied/pending (#327)
  • Loading branch information
glpecile committed Jun 6, 2024
1 parent 7ed3f3e commit b4188b1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions explorer/lib/explorer_web/live/pages/batches/index.html.heex
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<tr class="text-muted-foreground font-normal">
<th class="text-left">Batch Merkle Root</th>
<th>Block Number</th>
<th>Is verified</th>
<th>Status</th>
</tr>
</thead>
<tbody>
Expand Down Expand Up @@ -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 %>
</span>
</th>
</tr>
Expand Down

0 comments on commit b4188b1

Please sign in to comment.