Skip to content

Commit 5e0cdcb

Browse files
committed
CNAME
1 parent 1161208 commit 5e0cdcb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
www.swebench.com
1+
deep-polyu.github.io

js/mainResults.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ document.addEventListener('DOMContentLoaded', function() {
9898
if (currentPage === 'index' && window.location.hash) {
9999
const currentHash = window.location.hash.substring(1);
100100

101-
if (linkPage === currentHash && !['Accuracy', 'Reasoning'].includes(currentHash.toLowerCase())) {
101+
if (linkPage === currentHash && !['accuracy', 'reasoning'].includes(currentHash.toLowerCase())) {
102102
link.classList.add('active');
103103
}
104104
}
@@ -113,7 +113,7 @@ document.addEventListener('DOMContentLoaded', function() {
113113
});
114114

115115
const hash = window.location.hash.slice(1).toLowerCase();
116-
const validTabs = ['Accuracy', 'Reasoning'];
116+
const validTabs = ['accuracy', 'reasoning'];
117117

118118
if (hash && validTabs.includes(hash)) {
119119
const tabName = hash.charAt(0).toUpperCase() + hash.slice(1);

0 commit comments

Comments
 (0)