@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.
@@ -7581,8 +7581,8 @@
7581
7581
  var url = 'property/';
7582
7582
  url += this._propertyTypePipe.transform(config.propertyType, true) + "-";
7583
7583
  url += this._offeringTypePipe.transform(config.offering, ' ').replace(/ /g, '') + "-";
7584
- url += config.address.colony ? Utils.removeDiacritics(config.address.colony) + "-" : '';
7585
- url += config.address.city ? Utils.removeDiacritics(config.address.city) + "-" : '';
7584
+ url += config.address.colony ? Utils.removeDiacritics(config.address.colony).replace(/\//g, '') + "-" : '';
7585
+ url += config.address.city ? Utils.removeDiacritics(config.address.city).replace(/\//g, '') + "-" : '';
7586
7586
  url += config.propertyId;
7587
7587
  url = Utils.removeDiacritics(url).replace(/ /g, '-').toLowerCase();
7588
7588
  return url;