diff options
Diffstat (limited to 'ext/js')
-rw-r--r-- | ext/js/display/display-anki.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/js/display/display-anki.js b/ext/js/display/display-anki.js index b7d118da..fd3e8dcd 100644 --- a/ext/js/display/display-anki.js +++ b/ext/js/display/display-anki.js @@ -413,6 +413,9 @@ export class DisplayAnki { if (button !== null) { button.disabled = !canAdd; button.hidden = (ankiError !== null); + if (ankiError) { + log.error(ankiError); + } // If entry has noteIds, show the "add duplicate" button. if (Array.isArray(noteIds) && noteIds.length > 0) { |