Skip to content

Commit

Permalink
change upload_id
Browse files Browse the repository at this point in the history
  • Loading branch information
AstridKery committed Oct 18, 2024
1 parent f10d482 commit d58030c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/django/core/views/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def download_irr_log(request, project_pk):
for log in logs:
label_name = log.label.name if log.label else ""
writer.writerow(
[log.data.pk, log.data.text, label_name, log.profile.user, log.timestamp]
[log.data.upload_id, log.data.text, label_name, log.profile.user, log.timestamp]
)

return response
Expand Down

0 comments on commit d58030c

Please sign in to comment.