diff --git a/docs/lab/index.html b/docs/lab/index.html
index 3ced1f065..7b3f785dc 100644
--- a/docs/lab/index.html
+++ b/docs/lab/index.html
@@ -477,7 +477,8 @@ samples.set('Repertoire', {
}
for (const g of glyphs) {
- let [name, uc, ucName, color] = g
+ // let [name, uc, ucName, mtime, color] = g
+ let name = g[0], uc = g[1], ucName = g[2], mtime = g[3] color = g[4]
const ucHex = hexstr(uc, 4)
const style = color && color != '' ?
@@ -487,10 +488,10 @@ samples.set('Repertoire', {
ucName = '[unknown]'
}
- const title = 'U+' + ucHex + ' ' + ucName + ' ("' + g[0] + '")'
+ const title = 'U+' + ucHex + ' ' + ucName + ' ("' + name + '")'
html += `
${ucHex};
- ${g[0]}
+ ${name}
`
}