Skip to content

Commit

Permalink
Merge pull request #6 from iosifnicolae2/main
Browse files Browse the repository at this point in the history
fix: fix an issue when creating new documents
  • Loading branch information
iosifnicolae2 authored Jul 30, 2024
2 parents 3a85294 + ca82ee6 commit f45c9b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def changeform_view(

extra_context.update(
{
"actions_submit_line": self.get_actions_submit_line(request, object_id=int(object_id)),
"actions_submit_line": self.get_actions_submit_line(request, object_id=int(object_id) if object_id is not None else None),
"actions_detail": actions,
}
)
Expand Down

0 comments on commit f45c9b1

Please sign in to comment.