=
this.getSettings();
this._subscription = this.form.valueChanges.subscribe((data) => {
- this.changed = !Utils.equalsFilter(this.settings, this.original);
+ if (!data) {
+ return;
+ }
+ this.changed = !Utils.equalsFilter(data, this.original);
});
}
diff --git a/frontend/app/settings/other/other.settings.component.html b/frontend/app/settings/other/other.settings.component.html
index 48847ae..d2b4aa8 100644
--- a/frontend/app/settings/other/other.settings.component.html
+++ b/frontend/app/settings/other/other.settings.component.html
@@ -92,6 +92,18 @@
+
+
+