Skip to content

Commit

Permalink
chaged order of submit in export
Browse files Browse the repository at this point in the history
  • Loading branch information
eikichi18 committed Aug 21, 2024
1 parent daf722a commit 84509d7
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def get_data(self):

rows = []
# start patch
for index, item in enumerate(store.search()):
for index, item in enumerate(reversed(store.search())):
# end patch
data = {}
fields_labels = item.attrs.get("fields_labels", {})
Expand All @@ -68,6 +68,7 @@ def get_data(self):
# add fixed columns values
value = item.attrs.get(k, None)
data[k] = json_compatible(value)

# start patch
if "waiting_list" in custom_colums:
data.update(
Expand Down

0 comments on commit 84509d7

Please sign in to comment.