Notification Form: Remove environment condition
This commit is contained in:
parent
2007e12966
commit
25ea02d4a0
|
@ -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 => {
|
||||
|
|
Loading…
Reference in New Issue