diff --git a/index.html b/index.html
index 5e5ff63..5d62d4a 100644
--- a/index.html
+++ b/index.html
@@ -474,7 +474,11 @@
const url = `${baseUrl(v.version, g.arch)}${file}`;
let label = "Download";
if (download.title === "Cloud Hosted Router" && file.includes('chr')) {
- label = file.includes("legacy-bios") ? "Legacy" : "UEFI";
+ if (v.version.charAt(0) === "6" ){
+ label = "Legacy";
+ } else {
+ label = file.includes("legacy-bios") ? "Legacy" : "UEFI";
+ }
}
return ` ${label}`;
}).join("
");
@@ -593,4 +597,4 @@
});