From b4e9833e30d8f6bd2eaa5c86626cdf88bb9d4f51 Mon Sep 17 00:00:00 2001 From: ilGino <97920275+ilGino@users.noreply.github.com> Date: Sat, 29 Jan 2022 07:44:30 -0600 Subject: [PATCH] [WebUI] Change icon of links pointing to Health from fa-dashboard to fa-hearbeat (#13729) Health is always referred to with the fa-heartbeat icon. Instead, in the device list, the link pointing to device's Health is the fa-dashboard. In order to make the device-list page more visually consistent, I propose to change the icon from fa-dashboard to fa-heartbeat in the device lists. Regards GG --- app/Http/Controllers/Table/DeviceController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/Table/DeviceController.php b/app/Http/Controllers/Table/DeviceController.php index 0bc39f0c48..58f0d8389b 100644 --- a/app/Http/Controllers/Table/DeviceController.php +++ b/app/Http/Controllers/Table/DeviceController.php @@ -244,7 +244,7 @@ class DeviceController extends TableController } if ($sensor_count) { - $metrics[] = $this->formatMetric($device, $sensor_count, 'health', 'fa-dashboard'); + $metrics[] = $this->formatMetric($device, $sensor_count, 'health', 'fa-heartbeat'); } if ($wireless_count) {