mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2026-02-20 09:15:04 +08:00
Fix bug (#3012) rizwanmustafa
* Fix bug * base 10 Co-authored-by: Miodec <bartnikjack@gmail.com>
This commit is contained in:
parent
48fffe1b99
commit
44419bdb60
1 changed files with 2 additions and 2 deletions
|
|
@ -122,8 +122,8 @@ el.find(".timeGroup .button").on("click", (e) => {
|
|||
});
|
||||
|
||||
el.find(".quoteGroup .button").on("click", (e) => {
|
||||
let len: number | number[] = ($(e.currentTarget).attr("quote") ??
|
||||
0) as number;
|
||||
let len: number | number[] =
|
||||
parseInt($(e.currentTarget).attr("quote") as string, 10) ?? 0;
|
||||
if (len == -2) {
|
||||
// UpdateConfig.setQuoteLength(-2, false, e.shiftKey);
|
||||
hidePopup();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue