mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 15:32:23 -04:00
Ensure bigint
This commit is contained in:
parent
6ea64bcac5
commit
1cb733da29
1 changed files with 2 additions and 2 deletions
|
@ -982,8 +982,8 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|||
if (!notetypeId) {
|
||||
notetypeId = chooserDefaults.notetypeId;
|
||||
}
|
||||
deckChooser.select(deckId);
|
||||
notetypeChooser.select(notetypeId);
|
||||
deckChooser.select(BigInt(deckId));
|
||||
notetypeChooser.select(BigInt(notetypeId));
|
||||
}
|
||||
|
||||
const notetype = await getNotetype({
|
||||
|
|
Loading…
Reference in a new issue