Skip to content

Commit

Permalink
Fixed data display; Swapped textual original and linked participant name
Browse files Browse the repository at this point in the history
  • Loading branch information
theoboldt committed Jul 30, 2023
1 parent 528aa35 commit 29f09c6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/src/AppBundle/Twig/Extension/CustomFieldValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ public function customFieldValue(
'<a href="%s" data-toggle="tooltip" title="Original: %s">%s %s</a> ',
$url,
twig_escape_filter(
$env, $value->getParticipantFirstName() . ' ' . $value->getParticipantLastName(), 'html_attr'
$env, $value->getRelatedFirstName() . ' ' . $value->getRelatedLastName(), 'html_attr'
),
twig_escape_filter($env, $value->getRelatedFirstName()),
twig_escape_filter($env, $value->getRelatedLastName())
twig_escape_filter($env, $value->getParticipantFirstName()),
twig_escape_filter($env, $value->getParticipantLastName())
);
if ($value->isSystemSelection()) {
$html .= BootstrapGlyph::bootstrapGlyph('flash', 'automatisch');
Expand Down

0 comments on commit 29f09c6

Please sign in to comment.