mirror of
https://github.com/ankitects/anki.git
synced 2026-01-09 03:53:55 -05:00
Fix: Missing redo await
This commit is contained in:
parent
8adcf30b63
commit
f3ecb8a190
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ export class ReviewerState {
|
||||||
case "z": {
|
case "z": {
|
||||||
if (ctrl) {
|
if (ctrl) {
|
||||||
if (shift) {
|
if (shift) {
|
||||||
redo({});
|
await redo({});
|
||||||
} else {
|
} else {
|
||||||
await undo({});
|
await undo({});
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue