1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-14 09:26:50 +00:00

Tags in detail view are sorted now

This commit is contained in:
OzzieIsaacs 2018-06-02 17:02:18 +02:00
parent 204cd504a9
commit bf44774f22

View File

@ -254,7 +254,7 @@ class Books(Base):
uuid = Column(String)
authors = relationship('Authors', secondary=books_authors_link, backref='books')
tags = relationship('Tags', secondary=books_tags_link, backref='books')
tags = relationship('Tags', secondary=books_tags_link, backref='books',order_by="Tags.name")
comments = relationship('Comments', backref='books')
data = relationship('Data', backref='books')
series = relationship('Series', secondary=books_series_link, backref='books')