Notification Form: Remove environment condition

This commit is contained in:
Konstantinos Triantafyllou 2021-08-02 18:11:21 +03:00
parent 2007e12966
commit 25ea02d4a0
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ export class NotifyFormComponent implements OnInit, OnDestroy {
reset(message: string = null) {
if (!this.availableGroups) {
this.form = this.fb.group({
notify: this.fb.control(properties.environment !== 'production'),
notify: this.fb.control(true),
message: this.fb.control(message)
});
this.subscriptions.push(this.form.get('notify').valueChanges.subscribe(value => {