mirror of
https://github.com/ankitects/anki.git
synced 2026-01-13 22:13:58 -05:00
Fix: Wrong type
This commit is contained in:
parent
71d6ed2748
commit
620da8c6f9
1 changed files with 1 additions and 1 deletions
|
|
@ -32,7 +32,7 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
const validParamCounts = [0, 17, 19, 21];
|
||||
|
||||
function update(e: Event): void {
|
||||
const input = e.target as HTMLInputElement;
|
||||
const input = e.target as HTMLTextAreaElement;
|
||||
const newValue = input.value
|
||||
.replace(/ /g, "")
|
||||
.split(",")
|
||||
|
|
|
|||
Loading…
Reference in a new issue