Update index.html
Browse files- index.html +2 -2
index.html
CHANGED
@@ -145,10 +145,10 @@
|
|
145 |
React.createElement("span", { className: "text-base font-normal text-white/80" }, `– Team ${v.team ?? "?"}`)
|
146 |
),
|
147 |
React.createElement("video", { src: v.url, controls: true, className: "w-full rounded-xl shadow-2xl" }),
|
148 |
-
teamDatasets[v.team] ? React.createElement(
|
149 |
"div",
|
150 |
{ className: "mt-2 space-y-1" },
|
151 |
-
...teamDatasets[v.team].map((url, j) => React.createElement(
|
152 |
"a",
|
153 |
{ key: j, href: url, target: "_blank", className: "text-sm text-blue-200 underline hover:text-white" },
|
154 |
`Dataset: ${url.split("=")[1]}`
|
|
|
145 |
React.createElement("span", { className: "text-base font-normal text-white/80" }, `– Team ${v.team ?? "?"}`)
|
146 |
),
|
147 |
React.createElement("video", { src: v.url, controls: true, className: "w-full rounded-xl shadow-2xl" }),
|
148 |
+
teamDatasets[parseInt(v.team)] ? React.createElement(
|
149 |
"div",
|
150 |
{ className: "mt-2 space-y-1" },
|
151 |
+
...teamDatasets[parseInt(v.team)].map((url, j) => React.createElement(
|
152 |
"a",
|
153 |
{ key: j, href: url, target: "_blank", className: "text-sm text-blue-200 underline hover:text-white" },
|
154 |
`Dataset: ${url.split("=")[1]}`
|