Skip to content

Commit

Permalink
Merge pull request #57 from rubenexp/master
Browse files Browse the repository at this point in the history
Fix recipient variable in resend message
  • Loading branch information
Boris van Katwijk authored Nov 17, 2020
2 parents d4a4eca + 72ed165 commit 1527731
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Ui/Component/Listing/Column/EmailcatcherActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ public function prepareDataSource(array $dataSource)
),
'label' => __('Resend'),
'confirm' => [
'title' => __('Resend email to "${ $.$data.recipient }"'),
'message' => __('Are you sure you wan\'t resend this email to "${ $.$data.recipient }"?')
'title' => __('Resend email to "%1"', $item['recipient']),
'message' => __('Are you sure you wan\'t resend this email to "%1"?', $item['recipient'])
]
],
'forward' => [
Expand Down

0 comments on commit 1527731

Please sign in to comment.