maringetxway commited on
Commit
418e16f
·
verified ·
1 Parent(s): 370ea63

Update index.html

Browse files
Files changed (1) hide show
  1. 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]}`