From 82833bcf11e2a4a9ed9e24c6b54a2a3750a681e0 Mon Sep 17 00:00:00 2001 From: Alex Martzios Date: Mon, 25 Jul 2022 15:39:29 +0300 Subject: [PATCH] admin - edit form - 'notify managers' is now false by default --- notifications/notify-form/notify-form.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/notify-form/notify-form.component.ts b/notifications/notify-form/notify-form.component.ts index de00d6e9..96ac4481 100644 --- a/notifications/notify-form/notify-form.component.ts +++ b/notifications/notify-form/notify-form.component.ts @@ -83,7 +83,7 @@ export class NotifyFormComponent implements OnInit, OnDestroy { reset(message: string = null) { if (!this.availableGroups) { this.form = this.fb.group({ - notify: this.fb.control(true), + notify: this.fb.control(false), message: this.fb.control(message) }); this.subscriptions.push(this.form.get('notify').valueChanges.subscribe(value => {