@sebgroup/green-angular 2.1.1 → 2.1.2

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.
@@ -1350,7 +1350,7 @@ class NggSliderComponent {
1350
1350
  this.setTrackBackground();
1351
1351
  }
1352
1352
  ngOnChanges(changes) {
1353
- if (changes['value']) {
1353
+ if (['min', 'max', 'value'].some((x) => Object.prototype.hasOwnProperty.call(changes, x))) {
1354
1354
  this.setTrackBackground();
1355
1355
  }
1356
1356
  }