@maplander/components 0.21.46 → 0.21.47

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.
@@ -2983,12 +2983,12 @@
2983
2983
  * @return {?}
2984
2984
  */
2985
2985
  function () {
2986
- if (!this.filtersForm.get('minPrice')) {
2986
+ if (!this.filtersForm.get('minPrice').value || this.filtersForm.get('minPrice').value === '') {
2987
2987
  this.filtersForm.patchValue({
2988
2988
  minPrice: 0
2989
2989
  });
2990
2990
  }
2991
- if (!this.filtersForm.get('maxPrice')) {
2991
+ if (!this.filtersForm.get('maxPrice').value || this.filtersForm.get('maxPrice').value === '') {
2992
2992
  this.filtersForm.patchValue({
2993
2993
  maxPrice: 0
2994
2994
  });