Skip to content

Commit

Permalink
Fix rendering of links with forcePrimaryLink (CO-2246)
Browse files Browse the repository at this point in the history
  • Loading branch information
Benn Oshrin committed Oct 17, 2021
1 parent af14166 commit 62b01a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/templates/Standard/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ function _column_key($modelsName, $c, $tz=null) {
foreach($linkActions as $a) {
// Does this user have permission for this action?
if($vv_permissions[$a]) {
print $this->Html->link($label, ['action' => $a, $entity->id]);
print $this->Html->link($label, array_merge_recursive(['action' => $a], $linkArgs));
$linked = true;
break 2;
}
Expand Down

0 comments on commit 62b01a1

Please sign in to comment.