Skip to content

Commit

Permalink
[BUGFIX] - Fixed recipient string in resend message
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenexp committed Nov 16, 2020
1 parent a725cc1 commit 72ed165
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 72ed165

Please sign in to comment.