securis/src/main/webapp/src/app/forms/pack.form.component.ts
.. .. @@ -34,7 +34,7 @@ 34 34 } 35 35 36 36 loadCombos(): void { 37 - this.http.get('organization')37 + this.http.get('api/organization')38 38 .map(response => response.json().map((org : any) => <IComboOption>{id: org.id, label: `(${org.code}) ${org.name}`})) 39 39 .subscribe( 40 40 data => super.setViewData(() => this.organizations = (<IComboOption[]>data).sort((e1, e2) => e1.label.localeCompare(e2.label))),