We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c7c406 commit 8564c10Copy full SHA for 8564c10
src/app/components/core/south/south-service-modal/south-service-modal.component.ts
@@ -580,7 +580,6 @@ export class SouthServiceModalComponent implements OnInit {
580
if (this.apiCallsStack.length > 0) {
581
this.ngProgress.start();
582
forkJoin(this.apiCallsStack).subscribe((result) => {
583
- console.log('result', result);
584
result.forEach((r: any) => {
585
this.ngProgress.done();
586
if (r.failed) {
@@ -598,6 +597,7 @@ export class SouthServiceModalComponent implements OnInit {
598
597
this.apiCallsStack = [];
599
});
600
} else {
+ this.toast.info('Nothing to save', 5000);
601
this.toggleModal(false);
602
}
603
0 commit comments