diff --git a/perllib/FixMyStreet/Cobrand/Surrey.pm b/perllib/FixMyStreet/Cobrand/Surrey.pm index 89b0581b5b..6c492d07f1 100644 --- a/perllib/FixMyStreet/Cobrand/Surrey.pm +++ b/perllib/FixMyStreet/Cobrand/Surrey.pm @@ -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'; }