We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ed21554 + 8e2ef55 commit ecaf338Copy full SHA for ecaf338
1 file changed
src/app/features/settings/settings.component.ts
@@ -52,6 +52,10 @@ export class SettingsComponent {
52
developerMode: new FormControl(settings.developerMode)
53
});
54
55
+ this.formGroup.valueChanges.subscribe((settings) => {
56
+ this.settingsService.save(settings);
57
+ });
58
+
59
this.formGroup.get('developerMode')?.valueChanges.subscribe(() => {
60
this.clipboardService.rerunGetClipboardItem();
61
0 commit comments