From 558ff4535bd937a137b7d692ab3ddbaa740d24c5 Mon Sep 17 00:00:00 2001 From: Nikhil Kadam Date: Tue, 20 May 2025 12:27:21 +0530 Subject: [PATCH] Showing value for global --- .../Controllers/APIS/CustomerApi/TelemetryController.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/Http/Controllers/APIS/CustomerApi/TelemetryController.php b/app/Http/Controllers/APIS/CustomerApi/TelemetryController.php index 57d7329..a7ae33f 100644 --- a/app/Http/Controllers/APIS/CustomerApi/TelemetryController.php +++ b/app/Http/Controllers/APIS/CustomerApi/TelemetryController.php @@ -1475,7 +1475,10 @@ class TelemetryController extends Controller $data[] = [ 'title' => $title, - 'global' => $globalValueColor, + 'global' => [ + 'value' => $globalRaw, + 'color' => $globalValueColor, + ], 'data' => $response ]; }