Skip to content

Commit

Permalink
Merge pull request #3034 from CihanSenturk/transaction-delete-title
Browse files Browse the repository at this point in the history
Fixed transaction delete action title
  • Loading branch information
cuneytsenturk committed Aug 23, 2023
2 parents e66aea0 + 491f76f commit 4d7aca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Models/Banking/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ public function getLineActionsAttribute()
$actions[] = [
'type' => 'delete',
'icon' => 'delete',
'text' => ! empty($this->recurring) ? 'transactions' : 'recurring_template',
'title' => ! empty($this->recurring) ? 'transactions' : 'recurring_template',
'route' => $prefix. '.destroy',
'permission' => 'delete-banking-transactions',
'attributes' => [
Expand Down

0 comments on commit 4d7aca4

Please sign in to comment.