Skip to content

Commit

Permalink
Merge pull request #48 from 0xGabi/fix-blobs-html-typo
Browse files Browse the repository at this point in the history
fix(ui): minor typo on blobs html page
  • Loading branch information
pk910 authored Jan 26, 2024
2 parents b20b2a2 + bbfcacb commit 494c2a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/slot/blobs.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<div class="col-md-12 text-center"><b>Blob Sidecar {{ $blob.Index }}</b></div>
</div>
<div class="row border-bottom p-1 mx-0">
<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KGZ Commitment">KGZ Commitment:</span></div>
<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KZG Commitment">KZG Commitment:</span></div>
<div class="col-md-10 text-monospace">
0x{{ printf "%x" $blob.KzgCommitment }}
<i class="fa fa-copy text-muted p-1" role="button" data-bs-toggle="tooltip" title="Copy to clipboard" data-clipboard-text="0x{{ printf "%x" $blob.KzgCommitment }}"></i>
</div>
</div>
{{ if $blob.HaveData }}
<div class="row border-bottom p-1 mx-0">
<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KGZ Proof">KGZ Proof:</span></div>
<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KZG Proof">KZG Proof:</span></div>
<div class="col-md-10 text-monospace">
0x{{ printf "%x" $blob.KzgProof }}
<i class="fa fa-copy text-muted p-1" role="button" data-bs-toggle="tooltip" title="Copy to clipboard" data-clipboard-text="0x{{ printf "%x" $blob.KzgProof }}"></i>
Expand Down Expand Up @@ -66,7 +66,7 @@
}
var rowHtml = [
'<div class="row border-bottom p-1 mx-0">',
'<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KGZ Proof">KGZ Proof:</span></div>',
'<div class="col-md-2"><span data-bs-toggle="tooltip" data-bs-placement="top" title="KZG Proof">KZG Proof:</span></div>',
'<div class="col-md-10 text-monospace">',
data.kzg_proof,
'<i class="fa fa-copy text-muted p-1" role="button" data-bs-toggle="tooltip" title="Copy to clipboard" data-clipboard-text="' + data.kzg_proof + '"></i>',
Expand Down

0 comments on commit 494c2a5

Please sign in to comment.