mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-24 10:30:07 +08:00
fixed bump being on the wrong key
This commit is contained in:
parent
543f417406
commit
759f19c0ed
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@ export async function refresh(
|
|||
)
|
||||
continue;
|
||||
const key = rowKeys[i];
|
||||
const bump = row === "row3" && (i === 3 || i === 7) ? true : false;
|
||||
const bump = row === "row3" && (i === 3 || i === 6) ? true : false;
|
||||
const keyElement = `<div class="keymap-key" data-key="${key}">
|
||||
<span class="letter">${key[0]}</span>
|
||||
${bump ? "<div class='bump'></div>" : ""}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue