bug fix: only list actual branch names

This commit is contained in:
usmannasir
2024-02-13 23:00:13 +05:00
parent 0a9b953124
commit 74a4ad6fd4

View File

@@ -123,7 +123,9 @@
var option = document.createElement("option");
option.value = branch;
option.text = branch;
branchSelect.appendChild(option);
if (branch.startsWith("v") && branch.indexOf("dev") === -1) {
branchSelect.appendChild(option);
}
});
}