### What problem does this PR solve? ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)tags/v0.13.0
| @@ -317,7 +317,7 @@ class DocumentService(CommonService): | |||
| @classmethod | |||
| @DB.connection_context() | |||
| def get_thumbnails(cls, docids): | |||
| fields = [cls.model.id, cls.model.thumbnail] | |||
| fields = [cls.model.id, cls.model.kb_id, cls.model.thumbnail] | |||
| return list(cls.model.select( | |||
| *fields).where(cls.model.id.in_(docids)).dicts()) | |||