@maplander/components 0.21.39 → 0.21.40

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.
@@ -3399,7 +3399,6 @@
3399
3399
  */
3400
3400
  function (value) {
3401
3401
  if (!value) {
3402
- _this.filtersForm.controls['maxPrice'].reset(0);
3403
3402
  return;
3404
3403
  }
3405
3404
  _this.setPrices((/** @type {?} */ (value.toString())));
@@ -3411,6 +3410,9 @@
3411
3410
  function (value) {
3412
3411
  if (!value) {
3413
3412
  _this.filtersForm.controls['minPrice'].reset(0);
3413
+ _this.filtersForm.patchValue({
3414
+ minPrice: 0
3415
+ });
3414
3416
  return;
3415
3417
  }
3416
3418
  _this.maxPriceList = Object.assign([], _this._tmpMaxPriceList);
@@ -3426,6 +3428,10 @@
3426
3428
  */
3427
3429
  function (value) {
3428
3430
  if (!value) {
3431
+ _this.filtersForm.controls['maxPrice'].reset(0);
3432
+ _this.filtersForm.patchValue({
3433
+ maxPrice: 0
3434
+ });
3429
3435
  return;
3430
3436
  }
3431
3437
  _this.minPriceList = Object.assign([], _this._tmpMinPriceList);