diff --git a/locales/en/messages.json b/locales/en/messages.json index 8659fe0059..1ca7b6e09e 100755 --- a/locales/en/messages.json +++ b/locales/en/messages.json @@ -2812,7 +2812,7 @@ "message": "Sat ID" }, "gpsSignalStatusQly": { - "message": "Status / Quality" + "message": "Status     |  Quality" }, "gnssQualityNoSignal": { "message": "no signal" diff --git a/src/js/tabs/gps.js b/src/js/tabs/gps.js index b039d53f89..b5c30a840a 100644 --- a/src/js/tabs/gps.js +++ b/src/js/tabs/gps.js @@ -267,7 +267,6 @@ gps.initialize = async function (callback) { let quality = i18n.getMessage(qualityArray[FC.GPS_DATA.quality[i] & 0x7]); let used = i18n.getMessage(usedArray[(FC.GPS_DATA.quality[i] & 0x8) >> 3]); - // let healthy = i18n.getMessage(healthyArray[(FC.GPS_DATA.quality[i] & 0x30) >> 4]); // Add color to the text // 2nd column: no signal = red, unusable = red, searching = red, locked = yellow and fully locked = green @@ -291,20 +290,6 @@ gps.initialize = async function (callback) { used = `${used}`; } - /* - // 3d column: unknown = red, non healthy = grey, healthy = orange - if (healthy.startsWith(i18n.getMessage('gnssHealthyHealthy'))) { - healthy = `${healthy}`; - } else { - if (healthy.startsWith(i18n.getMessage('gnssHealthyUnhealthy'))) { - healthy = `${healthy}`; - } else { - healthy = `${healthy}`; - } - } - rowContent += `${used} | ${healthy} | ${quality}`; - */ - rowContent += `${used} | ${quality}`; } eSsTable.append(`${rowContent}`);