We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ed3f3e commit b4188b1Copy full SHA for b4188b1
explorer/lib/explorer_web/live/pages/batches/index.html.heex
@@ -9,7 +9,7 @@
9
<tr class="text-muted-foreground font-normal">
10
<th class="text-left">Batch Merkle Root</th>
11
<th>Block Number</th>
12
- <th>Is verified</th>
+ <th>Status</th>
13
</tr>
14
</thead>
15
<tbody>
@@ -41,7 +41,10 @@
41
false -> "text-white bg-secondary group-hover:bg-secondary/80"
42
end
43
]}>
44
- <%= batch.responded %>
+ <%= case batch.responded do
45
+ true -> "Verified"
46
+ false -> "Pending"
47
+ end %>
48
</span>
49
</th>
50
0 commit comments