@osovitny/anatoly 2.14.29 → 2.14.30

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.
@@ -3906,10 +3906,7 @@ class UrlSlugComponent extends BaseEditComponent {
3906
3906
  startWatching() {
3907
3907
  if (this.watchedControlName) {
3908
3908
  this.formGroup.get(this.watchedControlName).valueChanges.subscribe(value => {
3909
- let text = this.getFormValue(this.watchedControlName);
3910
- if (text != value) {
3911
- this.generateUrlSlug(value);
3912
- }
3909
+ this.generateUrlSlug(value);
3913
3910
  });
3914
3911
  }
3915
3912
  }