1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix journal entry table ordering

This commit is contained in:
Jeremy Stretch
2021-03-29 09:44:04 -04:00
parent 0fae7504b3
commit e52702f6c2

View File

@ -354,10 +354,7 @@ class ObjectJournalView(View):
assigned_object_type=content_type,
assigned_object_id=obj.pk
)
journalentry_table = tables.ObjectJournalTable(
data=journalentries,
orderable=False
)
journalentry_table = tables.ObjectJournalTable(journalentries)
paginate_table(journalentry_table, request)
if request.user.has_perm('extras.add_journalentry'):