mirror of
https://github.com/rifts-obsidian-laboratory/anki-integration.git
synced 2026-07-22 05:42:50 +00:00
Patch - Issue #13
This commit is contained in:
parent
5fe279f9f6
commit
5a68dab89f
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ export class AddNoteFromMetadataModal extends Modal {
|
|||
"ankiIntegrationModal__container--gap-16px"
|
||||
])
|
||||
|
||||
if (yaml["cardTags"] != null) {
|
||||
if (yaml != null && yaml["cardTags"] != null) {
|
||||
for (let i = 0; i < yaml["cardTags"].length; i++) {
|
||||
AddTagInputGroup(tagsBody, yaml["cardTags"][i]);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue