Select "Windows" tab instad of "Windows using MSYS2/MinGW"

Co-authored-by: Ondrej Baranovič <nulano@nulano.eu>
This commit is contained in:
Hugo van Kemenade 2023-11-27 12:54:50 -07:00 committed by GitHub
parent 959b45c945
commit ccb0a08a9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,7 +27,7 @@ function activateTab(tabName) {
const labels = document.querySelectorAll(".tab-label");
labels.forEach((label) => {
if (label.textContent.includes(tabName)) {
if (label.textContent == tabName) {
// Find the associated input element using the 'for' attribute
const tabInputId = label.getAttribute("for");
const tabInput = document.getElementById(tabInputId);