From 0e8f3d38fac51b121865f2a9c07e818285f62edb Mon Sep 17 00:00:00 2001 From: Emma Hegarty Date: Thu, 25 Jul 2024 19:31:11 +0200 Subject: [PATCH] fixup! feat: unassigned jobs have different color markers adjust colouring --- src/support/geo-utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/support/geo-utils.js b/src/support/geo-utils.js index 006504653..c6d42c160 100644 --- a/src/support/geo-utils.js +++ b/src/support/geo-utils.js @@ -616,7 +616,7 @@ const geoUtils = { if (job.lng && job.lat) { // Build the marker let propsData = { - color: unassignedJobIds.includes(job.id) ? theme.neutral : theme.dark, + color: unassignedJobIds.includes(job.id) ? '#8a8a8a' : theme.dark, textColor: unassignedJobIds.includes(job.id) ? 'black' : 'white', markerNumber: job.id.toString() }