mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-09-26 16:45:59 +08:00
fixed multiple quote selection not working
This commit is contained in:
parent
4a206eb11d
commit
12fe19a3c2
1 changed files with 1 additions and 1 deletions
|
@ -771,7 +771,7 @@ function setQuoteLength(len, nosave, multipleMode) {
|
|||
if (len.length === 1 && len[0] === -1) len = [1];
|
||||
ConfigSet.quoteLength(len);
|
||||
} else {
|
||||
if (!Array.isArray(ConfigSet.quoteLength)) ConfigSet.quoteLength([]);
|
||||
if (!Array.isArray(Config.quoteLength)) ConfigSet.quoteLength([]);
|
||||
if (len === null || isNaN(len) || len < -2 || len > 3) {
|
||||
len = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue