Skip to content

Commit

Permalink
Fix: HUSB/WIFE/CHIL shown on individual facts tab
Browse files Browse the repository at this point in the history
  • Loading branch information
fisharebest committed May 22, 2022
1 parent 5072e50 commit c0f0527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Module/IndividualFactsTabModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function getTabContent(Individual $individual): string
->flatten();

$indi_exclude_facts = $sidebar_facts->merge($tab_facts);
$fam_exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID']);
$fam_exclude_facts = new Collection(['FAM:CHAN', 'FAM:_UID', 'FAM:HUSB', 'FAM:WIFE', 'FAM:CHIL']);

$individual_facts = $this->individual_facts_service->individualFacts($individual, $indi_exclude_facts);
$family_facts = $this->individual_facts_service->familyFacts($individual, $fam_exclude_facts);
Expand Down

0 comments on commit c0f0527

Please sign in to comment.