Fixed time displayed issue

This commit is contained in:
2025-08-10 11:27:35 -04:00
parent 0e517b110f
commit c1a2338c56
7 changed files with 63 additions and 936 deletions
+1 -1
View File
@@ -1024,7 +1024,7 @@
border: 1px solid rgba(220, 38, 38, 0.3);
}
.location-accuracy-badge.accuracy-unaccurate {
.location-accuracy-badge.accuracy-inaccurate {
background: var(--danger-light);
color: var(--danger-color);
border: 1px solid rgba(220, 38, 38, 0.3);
+2 -2
View File
@@ -599,7 +599,7 @@ function extractLocationAccuracy(cell) {
function extractLocationAccuracyLevel(cell) {
const text = cell.textContent;
if (text.includes("excellent") || text.includes("good")) return "accurate";
if (text.includes("fair") || text.includes("poor")) return "unaccurate";
if (text.includes("fair") || text.includes("poor")) return "inaccurate";
return "unknown";
}
@@ -793,7 +793,7 @@ function updateFilterStats() {
function getAccuracyLevelColor(level) {
const colors = {
accurate: "#059669", // green
unaccurate: "#dc2626", // red
inaccurate: "#dc2626", // red
unknown: "#6b7280", // gray
};
return colors[level] || colors["unknown"];