Replace icons

This commit is contained in:
James Cole
2026-07-09 07:37:05 +02:00
parent d5ad06c885
commit 5328c1446f
79 changed files with 106 additions and 106 deletions
@@ -75,7 +75,7 @@ final class ConvertController extends Controller
$this->middleware(function ($request, $next) {
$this->accountRepository = app(AccountRepositoryInterface::class);
app('view')->share('title', (string) trans('firefly.transactions'));
app('view')->share('mainTitleIcon', 'fa-exchange');
app('view')->share('mainTitleIcon', 'bi-shuffle');
return $next($request);
});
@@ -104,7 +104,7 @@ final class ConvertController extends Controller
$groupTitle = $group->title ?? $first->description;
$groupArray = $transformer->transformObject($group);
$subTitle = (string) trans('firefly.convert_to_'.$destinationType->type, ['description' => $groupTitle]);
$subTitleIcon = 'fa-exchange';
$subTitleIcon = 'bi-shuffle';
// get a list of asset accounts and liabilities and stuff, in various combinations:
$validDepositSources = $this->getValidDepositSources();