Commit 8e71e7a0 authored by Michael de Hoog's avatar Michael de Hoog Committed by GitHub

Fix stateviz take 2: update javascript to new L2Safe variable name (#3529)

Co-authored-by: default avatarmergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: default avatarMatthew Slipper <me@matthewslipper.com>
parent 1bbce92a
...@@ -69,7 +69,7 @@ async function pageTable() { ...@@ -69,7 +69,7 @@ async function pageTable() {
<th scope="col">L1Head</th> <th scope="col">L1Head</th>
<th scope="col">L1Current</th> <th scope="col">L1Current</th>
<th scope="col">L2Head</th> <th scope="col">L2Head</th>
<th scope="col">L2SafeHead</th> <th scope="col">L2Safe</th>
<th scope="col">L2FinalizedHead</th> <th scope="col">L2FinalizedHead</th>
</tr> </tr>
</thead> </thead>
...@@ -100,8 +100,8 @@ async function pageTable() { ...@@ -100,8 +100,8 @@ async function pageTable() {
<td title="${tooltipFormat(e.l2Head)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2Head.hash)};"> <td title="${tooltipFormat(e.l2Head)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2Head.hash)};">
${prettyHex(e.l2Head.hash)} ${prettyHex(e.l2Head.hash)}
</td> </td>
<td title="${tooltipFormat(e.l2SafeHead)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2SafeHead.hash)};"> <td title="${tooltipFormat(e.l2Safe)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2Safe.hash)};">
${prettyHex(e.l2SafeHead.hash)} ${prettyHex(e.l2Safe.hash)}
</td> </td>
<td title="${tooltipFormat(e.l2FinalizedHead)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2FinalizedHead.hash)};"> <td title="${tooltipFormat(e.l2FinalizedHead)}" data-bs-html="true" data-toggle="tooltip" style="background-color:${colorCode(e.l2FinalizedHead.hash)};">
${prettyHex(e.l2FinalizedHead.hash)} ${prettyHex(e.l2FinalizedHead.hash)}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment