From 5600d2824ceca1e5f53a5f4f3a10c1c72124eb49 Mon Sep 17 00:00:00 2001 From: Abdo Date: Tue, 12 Oct 2021 10:04:20 +0300 Subject: [PATCH] Fix invalid 'noteCards' browser column being used (#1422) --- pylib/anki/browser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pylib/anki/browser.py b/pylib/anki/browser.py index c96fb9c80..8563ed229 100644 --- a/pylib/anki/browser.py +++ b/pylib/anki/browser.py @@ -31,4 +31,4 @@ class BrowserConfig: class BrowserDefaults: CARD_COLUMNS = ["noteFld", "template", "cardDue", "deck"] - NOTE_COLUMNS = ["noteFld", "note", "noteCards", "noteTags"] + NOTE_COLUMNS = ["noteFld", "note", "template", "noteTags"]