Changed number format for global indicators

This commit is contained in:
Nikhil Kadam
2025-05-18 14:07:40 +05:30
parent 6efe85b631
commit d29f5f2825

View File

@@ -153,7 +153,7 @@ class TelemetryService
$transformedTelemetry[] = [
'display_name' => $displayNameMap[$key] ?? $key,
'value' => number_format((float)$value, 2),
'value' => number_format((float)$value, 2, '.', ''),
'health_status' => $status,
'status_color' => $statusColor,
'thresholds' => $thresholds,