Skip to content

Commit

Permalink
Add event reference citations to the complete individual report
Browse files Browse the repository at this point in the history
Fixes #13035.
  • Loading branch information
Nick-Hall committed Feb 6, 2024
1 parent cf9bfdb commit 954cc38
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gramps/plugins/textreport/indivcomplete.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,8 @@ def write_fact(self, event_ref, event, show_type=True):
ignore = _("%(str1)s, %(str2)s") % {"str1": "", "str2": ""}
column_2 = self.combine("%(str1)s, %(str2)s", "%s", description, place_name)

endnotes = self._cite_endnote(event, prior=place_endnote)
event_ref_endnotes = self._cite_endnote(event_ref, prior=place_endnote)
endnotes = self._cite_endnote(event, prior=event_ref_endnotes)

self.doc.start_row()
self.write_cell(column_1)
Expand Down

0 comments on commit 954cc38

Please sign in to comment.