Fix restore icon in table view

Signed-off-by: Aaron <admin@datahoarder.dev>
This commit is contained in:
Aaron 2022-11-19 10:45:10 +01:00
parent ba4c37a7f4
commit 7c854c0a5c
No known key found for this signature in database
GPG key ID: 3BE3290DE3E557EB

View file

@ -280,7 +280,7 @@
if ((row.available_actions) && (row.available_actions.restore === true)) {
actions += '<form style="display: inline;" method="POST" action="{{ url('/') }}/' + dest + '/' + row.id + '/restore"> ';
actions += '@csrf';
actions += '<button class="btn btn-sm btn-warning" data-toggle="tooltip" title="{{ trans('general.restore') }}"><i class="far fa-retweet"></i></button>&nbsp;';
actions += '<button class="btn btn-sm btn-warning" data-toggle="tooltip" title="{{ trans('general.restore') }}"><i class="fas fa-retweet"></i></button>&nbsp;';
}
actions +='</nobr>';