Skip to content

Commit

Permalink
Fix: #4865 - cannot show single surname after viewing all surnames in…
Browse files Browse the repository at this point in the history
… individual/family lists
  • Loading branch information
fisharebest committed Aug 18, 2023
1 parent 9979707 commit c716db3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/Module/IndividualListModule.php
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ public function handle(ServerRequestInterface $request): ResponseInterface
case 'style1':
echo view('lists/surnames-column-list', [
'module' => $this,
'params' => ['show' => 'indi'] + $params,
'params' => ['show' => 'indi', 'show_all' => null] + $params,
'surnames' => $surns,
'totals' => true,
'tree' => $tree,
Expand All @@ -382,7 +382,7 @@ public function handle(ServerRequestInterface $request): ResponseInterface
case 'style3':
echo view('lists/surnames-tag-cloud', [
'module' => $this,
'params' => ['show' => 'indi'] + $params,
'params' => ['show' => 'indi', 'show_all' => null] + $params,
'surnames' => $surns,
'totals' => true,
'tree' => $tree,
Expand All @@ -394,7 +394,7 @@ public function handle(ServerRequestInterface $request): ResponseInterface
'families' => $this->families,
'module' => $this,
'order' => [[0, 'asc']],
'params' => ['show' => 'indi'] + $params,
'params' => ['show' => 'indi', 'show_all' => null] + $params,
'surnames' => $surns,
'tree' => $tree,
]);
Expand Down

0 comments on commit c716db3

Please sign in to comment.