Skip to content

Commit

Permalink
(BIDS-2562) Clicking duty icon does not switch the tab (#2806)
Browse files Browse the repository at this point in the history
  • Loading branch information
Markus authored Jan 31, 2024
1 parent 9adaa87 commit 723348c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions templates/validator/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -294,22 +294,22 @@
<script>
window.addEventListener("load", function () {
$("#blockCount").on("click", function () {
$("#blocks-tab").tab("show")
$("#blocks-tab").click()
})
$("#attestationCount").on("click", function () {
$("#attestations-tab").tab("show")
$("#attestations-tab").click()
})
$("#syncCount").on("click", function () {
$("#sync-tab").tab("show")
$("#sync-tab").click()
})
$("#slashingsCount").on("click", function () {
$("#slashings-tab").tab("show")
$("#slashings-tab").click()
})
$("#depositCount").on("click", function () {
$("#deposits-tab").tab("show")
$("#deposits-tab").click()
})
$("#withdrawalCount").on("click", function () {
$("#withdrawal-tab").tab("show")
$("#withdrawal-tab").click()
})
})
</script>
Expand Down

0 comments on commit 723348c

Please sign in to comment.