Skip to content

Commit 0e8f3d3

Browse files
committed
fixup! feat: unassigned jobs have different color markers
adjust colouring
1 parent 1826083 commit 0e8f3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/support/geo-utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,7 @@ const geoUtils = {
616616
if (job.lng && job.lat) {
617617
// Build the marker
618618
let propsData = {
619-
color: unassignedJobIds.includes(job.id) ? theme.neutral : theme.dark,
619+
color: unassignedJobIds.includes(job.id) ? '#8a8a8a' : theme.dark,
620620
textColor: unassignedJobIds.includes(job.id) ? 'black' : 'white',
621621
markerNumber: job.id.toString()
622622
}

0 commit comments

Comments
 (0)