Update index.html
Browse files- index.html +1 -1
index.html
CHANGED
@@ -22,7 +22,7 @@
|
|
22 |
function parseRankTeam(path) {
|
23 |
const name = path.split("/").pop();
|
24 |
const m = name.match(/^(\d+)-(\d+)-/);
|
25 |
-
return m ? { rank: +m[1], team: +m[2] } : { rank: 0, team:
|
26 |
}
|
27 |
|
28 |
function App() {
|
|
|
22 |
function parseRankTeam(path) {
|
23 |
const name = path.split("/").pop();
|
24 |
const m = name.match(/^(\d+)-(\d+)-/);
|
25 |
+
return m ? { rank: +m[1], team: +m[2] } : { rank: 0, team: "LeRobot" };
|
26 |
}
|
27 |
|
28 |
function App() {
|