mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Enable use-isnan lint
This commit is contained in:
@ -178,7 +178,7 @@ async function onRegexEditorOpenClick(existingId) {
|
||||
.filter(":checked")
|
||||
.map(function () { return parseInt($(this).val()) })
|
||||
.get()
|
||||
.filter((e) => e !== NaN) || [],
|
||||
.filter((e) => !isNaN(e)) || [],
|
||||
disabled:
|
||||
editorHtml
|
||||
.find(`input[name="disabled"]`)
|
||||
|
Reference in New Issue
Block a user