@maplander/components 0.21.49 → 0.21.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7569,8 +7569,8 @@ var MarkersService = /** @class */ (function () {
7569
7569
  var url = 'property/';
7570
7570
  url += this._propertyTypePipe.transform(config.propertyType, true) + "-";
7571
7571
  url += this._offeringTypePipe.transform(config.offering, ' ').replace(/ /g, '') + "-";
7572
- url += config.address.colony ? Utils.removeDiacritics(config.address.colony) + "-" : '';
7573
- url += config.address.city ? Utils.removeDiacritics(config.address.city) + "-" : '';
7572
+ url += config.address.colony ? Utils.removeDiacritics(config.address.colony).replace(/\//g, '') + "-" : '';
7573
+ url += config.address.city ? Utils.removeDiacritics(config.address.city).replace(/\//g, '') + "-" : '';
7574
7574
  url += config.propertyId;
7575
7575
  url = Utils.removeDiacritics(url).replace(/ /g, '-').toLowerCase();
7576
7576
  return url;