fix central star

This commit is contained in:
Laurent Mazet 2021-01-15 18:39:29 +01:00
parent ae79bb84b8
commit 3a148fbbd1
1 changed files with 6 additions and 2 deletions

View File

@ -2322,7 +2322,9 @@
if (mode !== "short") {
for (const cell of [].slice.call(document.getElementsByClassName("special-cell-label"))) {
cell.textContent = cell.longText;
if (cell.textContent !== "★") {
cell.textContent = cell.longText;
}
}
}
@ -2333,7 +2335,9 @@
if (mode === "short") {
for (const cell of [].slice.call(document.getElementsByClassName("special-cell-label"))) {
cell.textContent = cell.shortText;
if (cell.textContent !== "★") {
cell.textContent = cell.shortText;
}
}
}
}