Skip to content

Commit 35cdd40

Browse files
committed
default leaderborad to unconstrained track
1 parent 2b797b3 commit 35cdd40

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

leaderboard.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ <h1 class="text-3xl font-bold mb-4 text-center text-black">Leaderboard</h1>
5656
<!-- Tabs for Constrained and Unconstrained -->
5757
<center>
5858
<div class="mb-4">
59-
<button id="constrainedTab" class="px-4 py-2 bg-blue-500 text-white rounded" onclick="showTable('constrained')">Constrained</button>
60-
<button id="unconstrainedTab" class="px-4 py-2 bg-gray-300 text-black rounded ml-2" onclick="showTable('unconstrained')">Unconstrained</button>
59+
<button id="unconstrainedTab" class="px-4 py-2 bg-blue-500 text-white rounded" onclick="showTable('unconstrained')">Unconstrained</button>
60+
<button id="constrainedTab" class="px-4 py-2 bg-gray-300 text-black rounded ml-2" onclick="showTable('constrained')">Constrained</button>
6161
</div>
6262
</center>
63-
63+
6464
<!-- Constrained Table -->
65-
<div id="constrainedTable" class="overflow-x-auto">
65+
<div id="constrainedTable" class="overflow-x-auto hidden">
6666
<center>
6767
<div class="mb-4">
6868
<button id="smallTab" class="px-4 py-2 bg-blue-500 text-white rounded ml-2" onclick="showSubTable('small')">Small</button>
@@ -125,9 +125,9 @@ <h1 class="text-3xl font-bold mb-4 text-center text-black">Leaderboard</h1>
125125
</table>
126126
</div>
127127
</div>
128-
128+
129129
<!-- Unconstrained Table -->
130-
<div id="unconstrainedTable" class="overflow-x-auto hidden">
130+
<div id="unconstrainedTable" class="overflow-x-auto">
131131
<table id="unconstrainedLeaderboardTable" class="display w-full text-left text-black">
132132
<thead>
133133
<tr>
@@ -734,7 +734,7 @@ <h1 class="text-3xl font-bold mb-4 text-center text-black">Leaderboard</h1>
734734
</tr>
735735
</tbody>
736736
</table>
737-
</div>
737+
</div>
738738
</div>
739739

740740
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>

0 commit comments

Comments
 (0)