Skip to content

Commit

Permalink
Merge branch 'sutton-fd-5150-4752' into commercial-staging
Browse files Browse the repository at this point in the history
  • Loading branch information
dracos committed Feb 26, 2025
2 parents 32db2a8 + 77902d3 commit 6b8058f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion perllib/FixMyStreet/Cobrand/Surrey.pm
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ sub report_age {
sub pin_colour {
my ( $self, $p, $context ) = @_;
return 'grey-cross' if $p->is_closed || $p->state eq 'unable to fix';
return 'grey' if $p->state eq 'not responsible';
return 'grey' if $p->state eq 'not responsible' || ($context ne 'reports' && !$self->owns_problem($p));
return 'green-tick' if $p->is_fixed;
return 'yellow';
}
Expand Down

0 comments on commit 6b8058f

Please sign in to comment.