@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.
@@ -3387,7 +3387,6 @@ var FiltersComponent = /** @class */ (function () {
3387
3387
  */
3388
3388
  function (value) {
3389
3389
  if (!value) {
3390
- _this.filtersForm.controls['maxPrice'].reset(0);
3391
3390
  return;
3392
3391
  }
3393
3392
  _this.setPrices((/** @type {?} */ (value.toString())));
@@ -3399,6 +3398,9 @@ var FiltersComponent = /** @class */ (function () {
3399
3398
  function (value) {
3400
3399
  if (!value) {
3401
3400
  _this.filtersForm.controls['minPrice'].reset(0);
3401
+ _this.filtersForm.patchValue({
3402
+ minPrice: 0
3403
+ });
3402
3404
  return;
3403
3405
  }
3404
3406
  _this.maxPriceList = Object.assign([], _this._tmpMaxPriceList);
@@ -3414,6 +3416,10 @@ var FiltersComponent = /** @class */ (function () {
3414
3416
  */
3415
3417
  function (value) {
3416
3418
  if (!value) {
3419
+ _this.filtersForm.controls['maxPrice'].reset(0);
3420
+ _this.filtersForm.patchValue({
3421
+ maxPrice: 0
3422
+ });
3417
3423
  return;
3418
3424
  }
3419
3425
  _this.minPriceList = Object.assign([], _this._tmpMinPriceList);