Commit a93070e4 by GD-A-150752

service-fix

parent 4652cdd2
...@@ -91,7 +91,10 @@ export class MessageEngineComponent extends BaseComponent implements OnInit { ...@@ -91,7 +91,10 @@ export class MessageEngineComponent extends BaseComponent implements OnInit {
this.sentViaMenuItems = this.sentViaEnum.map(elem => this.sentViaMenuItems = this.sentViaEnum.map(elem =>
({ ({
label: elem.Description, label: elem.Description,
command: () => this.Message.SentVia = elem command: () => {
this.Message.SentVia = elem;
this.saveEngineApplicantView();
}
})); }));
}) })
...@@ -180,7 +183,8 @@ export class MessageEngineComponent extends BaseComponent implements OnInit { ...@@ -180,7 +183,8 @@ export class MessageEngineComponent extends BaseComponent implements OnInit {
} }
this.showLoader = true; this.showLoader = true;
this.subscriptions.push(this.saveService.saveObjectsWithDefaultSvc(this.createdObjs, this.updatedObjs, this.deletedObjs) this.subscriptions.push(this.saveService.saveObjects('svc/Send', this.createdObjs,
this.updatedObjs, this.deletedObjs)
.subscribe( .subscribe(
() => { () => {
this.showLoader = false; this.showLoader = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment