From 98e1b053bde3cce660ba2b5c56f7dde44ee696a1 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) (cherry picked from commit 5600d2824ceca1e5f53a5f4f3a10c1c72124eb49) --- 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 7399fa452..89a0a40d8 100644 --- a/pylib/anki/browser.py +++ b/pylib/anki/browser.py @@ -32,4 +32,4 @@ class BrowserConfig: class BrowserDefaults: CARD_COLUMNS = ["noteFld", "template", "cardDue", "deck"] - NOTE_COLUMNS = ["noteFld", "note", "noteCards", "noteTags"] + NOTE_COLUMNS = ["noteFld", "note", "template", "noteTags"]