mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 16:56:36 -04:00
fix display of non-latin tags
This commit is contained in:
parent
bc96a00fd2
commit
d503b62cd1
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ class DataModel(QAbstractTableModel):
|
||||||
elif type == "cardLapses":
|
elif type == "cardLapses":
|
||||||
return str(c.lapses)
|
return str(c.lapses)
|
||||||
elif type == "noteTags":
|
elif type == "noteTags":
|
||||||
return str(" ".join(c.note().tags))
|
return " ".join(c.note().tags)
|
||||||
elif type == "note":
|
elif type == "note":
|
||||||
return c.model()['name']
|
return c.model()['name']
|
||||||
elif type == "cardIvl":
|
elif type == "cardIvl":
|
||||||
|
|
Loading…
Reference in a new issue