diff --git a/dmp-frontend/src/app/datasets/editor/dataset-editor.component.html b/dmp-frontend/src/app/datasets/editor/dataset-editor.component.html index 4ee4ab353..62b863a58 100644 --- a/dmp-frontend/src/app/datasets/editor/dataset-editor.component.html +++ b/dmp-frontend/src/app/datasets/editor/dataset-editor.component.html @@ -12,13 +12,6 @@ {{'GENERAL.VALIDATION.REQUIRED' | translate}} - - - {{baseErrorModel.profile}} - {{'GENERAL.VALIDATION.REQUIRED' | translate}} - - - {{baseErrorModel.uri}} diff --git a/dmp-frontend/src/app/services/external-sources/external-sources.service.ts b/dmp-frontend/src/app/services/external-sources/external-sources.service.ts index dbf380b31..c0cd7b64e 100644 --- a/dmp-frontend/src/app/services/external-sources/external-sources.service.ts +++ b/dmp-frontend/src/app/services/external-sources/external-sources.service.ts @@ -43,6 +43,6 @@ export class ExternalSourcesService { } public searchDMPProfiles(like: string): Observable { - return this.http.get(this.actionUrl + "profiles/get" + "?query=" + like, { headers: this.headers }); + return this.http.get(this.actionUrl + "datasetprofiles/get" + "?query=" + like, { headers: this.headers }); } }