Joaquín Reñé
18 hours ago 78b085815b9873acdf178b2e9c9598d065fd40c0
securis/src/main/webapp/src/app/forms/pack.form.component.ts
....@@ -34,7 +34,7 @@
3434 }
3535
3636 loadCombos(): void {
37
- this.http.get('organization')
37
+ this.http.get('api/organization')
3838 .map(response => response.json().map((org : any) => <IComboOption>{id: org.id, label: `(${org.code}) ${org.name}`}))
3939 .subscribe(
4040 data => super.setViewData(() => this.organizations = (<IComboOption[]>data).sort((e1, e2) => e1.label.localeCompare(e2.label))),