diff options
Diffstat (limited to 'web')
-rw-r--r-- | web/cobrands/fixmystreet/assets.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/cobrands/fixmystreet/assets.js b/web/cobrands/fixmystreet/assets.js index 12d2da45d..f39c8fa96 100644 --- a/web/cobrands/fixmystreet/assets.js +++ b/web/cobrands/fixmystreet/assets.js @@ -308,7 +308,7 @@ function check_zoom_message_visibility() { } if (this.getVisibility() && this.inRange) { - if (this.fixmystreet.asset_item_message) { + if (typeof this.fixmystreet.asset_item_message !== 'undefined') { $p.html(this.fixmystreet.asset_item_message); } else { $p.html('You can pick a <b class="asset-' + this.fixmystreet.asset_type + '">' + this.fixmystreet.asset_item + '</b> from the map »'); |