diff options
-rw-r--r-- | web/cobrands/peterborough/assets.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/web/cobrands/peterborough/assets.js b/web/cobrands/peterborough/assets.js index 58ec4e5a1..3d718116e 100644 --- a/web/cobrands/peterborough/assets.js +++ b/web/cobrands/peterborough/assets.js @@ -137,8 +137,11 @@ fixmystreet.assets.add(light_defaults, { } }, asset_group: 'Street lighting', + asset_category: 'Lighting enquiry', relevant: function(options) { - return options.group === 'Street lighting' && options.category !== UNKNOWN_LIGHT_CATEGORY_NAME; + return ( options.group === 'Street lighting' && + options.category !== UNKNOWN_LIGHT_CATEGORY_NAME + ) || options.category === "Lighting enquiry"; }, asset_item_message: 'You can pick a <b class="asset-spot">street light</b> from the map »', select_action: true, |