Skip to content

Commit

Permalink
fixup! feat: unassigned jobs have different color markers
Browse files Browse the repository at this point in the history
adjust colouring
  • Loading branch information
blackbirdem committed Jul 25, 2024
1 parent 1826083 commit 0e8f3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/support/geo-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down

0 comments on commit 0e8f3d3

Please sign in to comment.