This commit is contained in:
Nikolaos Laskaris 2017-11-20 11:10:17 +02:00
parent 022768818d
commit d9a791223d
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";
*/