From 722cf9b4fe4e4b874b7529e46f8dc0521e30f27f Mon Sep 17 00:00:00 2001 From: Lucas Guima Date: Fri, 1 May 2020 17:39:43 -0300 Subject: [PATCH] Update the Reports icon around the site --- app/Http/Controllers/ReportController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/ReportController.php b/app/Http/Controllers/ReportController.php index a089138782..f9b0cf5304 100644 --- a/app/Http/Controllers/ReportController.php +++ b/app/Http/Controllers/ReportController.php @@ -64,7 +64,7 @@ class ReportController extends Controller $this->middleware( function ($request, $next) { app('view')->share('title', (string) trans('firefly.reports')); - app('view')->share('mainTitleIcon', 'fa-line-chart'); + app('view')->share('mainTitleIcon', 'fa-bar-chart'); app('view')->share('subTitleIcon', 'fa-calendar'); $this->helper = app(ReportHelperInterface::class); $this->repository = app(BudgetRepositoryInterface::class);