admin - edit form - 'notify managers' is now false by default

This commit is contained in:
Alex Martzios 2022-07-25 15:39:29 +03:00
parent 71437f2085
commit 82833bcf11
1 changed files with 1 additions and 1 deletions

View File

@ -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 => {