Skip to content

Commit 3a45a62

Browse files
committed
fix(html): Fixed duplicate transaction table identifiers
1 parent d6a7aca commit 3a45a62

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

css/style.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ input.tabs-radio:checked + label img {
733733
-webkit-transform: translate(-50%, -55%);
734734
transform: translate(-50%, -55%);
735735
}
736-
#wHistory {
736+
#full-transaction-history, #wallet-transaction-history {
737737
width: 100%;
738738
padding: .5rem;
739739
padding-bottom: 1rem;
@@ -835,7 +835,7 @@ input.tabs-radio:checked + label img {
835835
opacity: 1;
836836
}
837837
}
838-
#wHistory tbody,
838+
#full-transaction-history tbody, #wallet-transaction-history tbody,
839839
#latestBlocksUnconfirmed,
840840
#latestBlocksTable {
841841
font-family: 'Lekton';
@@ -1493,7 +1493,7 @@ input.tabs-radio:checked + label img {
14931493
.wB-buttons {
14941494
height: 22.5%;
14951495
}
1496-
#wHistory {
1496+
#full-transaction-history, #wallet-transaction-history {
14971497
display: none;
14981498
}
14991499
}

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -653,7 +653,7 @@ <h2>SEND PAYMENT</h2>
653653
</div>
654654

655655

656-
<div id="wHistory" class="wavesTable">
656+
<div id="wallet-transaction-history" class="wavesTable">
657657
<table>
658658
<thead>
659659
<div class="wTMainHeader">
@@ -747,7 +747,7 @@ <h1>DECENTRALIZED VOTING</h1>
747747
<!-- HISTORY TAB -->
748748
<div id="mBB-history" class="mBB-content">
749749

750-
<div id="wHistory" class="wavesTable">
750+
<div id="full-transaction-history" class="wavesTable">
751751
<table>
752752
<thead>
753753
<div class="wTMainHeader">

0 commit comments

Comments
 (0)