Merge branch 'master' of gitlab.eudat.eu:dmp/OpenAIRE-EUDAT-DMP-service-pilot

This commit is contained in:
annampak 2017-11-20 11:45:13 +02:00
commit bee5649a75
2 changed files with 4 additions and 4 deletions

View File

@ -180,13 +180,13 @@ export class DmpComponent implements OnInit{
editDmp(item){
this.dmp = item;
this.dmp = Object.assign({}, item);
this.dmp.project = item.project.id;
$("#newDmpModal").modal("show");
}
editDmpVersion(item){
this.dmp = item;
this.dmp = Object.assign({}, item);
this.dmp.project = item.project.id;
$("#newVersionDmpModal").modal("show");
}

View File

@ -17,16 +17,17 @@ export class RestBase {
/*
protocol: string = "http";
hostname: string ="localhost"
port: number = 8080;
webappname: string = "dmp-backend";
/*
protocol: string = "http";
hostname: string ="dl010.madgik.di.uoa.gr"
port: number = 8080;
webappname: string = "dmp-backend";
*/
@ -34,7 +35,6 @@ export class RestBase {
hostname: string = "dionysus.di.uoa.gr" ;
port: number = 7070;
webappname: string = "dmp-backend";
*/