From 1ac139134bbdca299b9bd4f9e68fd63a8459999d Mon Sep 17 00:00:00 2001 From: leandrofars Date: Mon, 8 Jul 2024 10:11:25 -0300 Subject: [PATCH] fix(frontend): map offline device status color --- frontend/src/pages/map.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/map.js b/frontend/src/pages/map.js index 18fd812..9aa7247 100644 --- a/frontend/src/pages/map.js +++ b/frontend/src/pages/map.js @@ -193,7 +193,7 @@ const Page = () => {
Model: {activeMarkerdata.Model?activeMarkerdata.Model:activeMarkerdata.ProductClass}
Alias: {activeMarkerdata.Alias}
-
Status: {activeMarkerdata.Status == 2 ? online : offline}
+
Status: {activeMarkerdata.Status == 2 ? online : offline}
:

no device info found

}