Compare commits

..

2 Commits

Author SHA1 Message Date
Mojib Wali
cb9b80668c release: v3.9.2 2022-06-28 15:48:50 +02:00
David
5bf5ce4268 fix: adopt renaming of serialize function (#269) 2022-06-28 15:39:44 +02:00
3 changed files with 6 additions and 4 deletions

View File

@@ -7,6 +7,10 @@
Changes
=======
Version 3.9.2 (released 2022-06-28)
- fix: adopt renaming of serialize function (#269)
Version 3.9.1 (released 2022-06-02)
- fix: add trigger to accordion (#265)

View File

@@ -10,6 +10,6 @@
from .ext import InvenioThemeTugraz
__version__ = "3.9.1"
__version__ = "3.9.2"
__all__ = ("__version__", "InvenioThemeTugraz")

View File

@@ -53,9 +53,7 @@ def records_serializer(records=None):
"""Serialize list of records."""
record_list = []
for record in records:
record_list.append(
UIJSONSerializer().serialize_object_to_dict(record.to_dict())
)
record_list.append(UIJSONSerializer().dump_obj(record.to_dict()))
return record_list