[Library | Trunk]: Remove some double ;;
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@61221 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
03e5cb0c4a
commit
76403fbaba
|
@ -35,7 +35,7 @@ export class EntitiesSearchService {
|
||||||
return this.parse(request,"oaf:project","project");
|
return this.parse(request,"oaf:project","project");
|
||||||
}).catch((ex) => {
|
}).catch((ex) => {
|
||||||
console.error('An error occured', ex);
|
console.error('An error occured', ex);
|
||||||
return [{id:'-2',label:'Error'}];;
|
return [{id:'-2',label:'Error'}];
|
||||||
});
|
});
|
||||||
}*/
|
}*/
|
||||||
searchByDepositType(keyword:string, DepositType:string, properties:EnvProperties ):any {
|
searchByDepositType(keyword:string, DepositType:string, properties:EnvProperties ):any {
|
||||||
|
@ -78,7 +78,7 @@ export class EntitiesSearchService {
|
||||||
return this.parse(request,"oaf:organization","organization");
|
return this.parse(request,"oaf:organization","organization");
|
||||||
}).catch((ex) => {
|
}).catch((ex) => {
|
||||||
console.error('An error occured', ex);
|
console.error('An error occured', ex);
|
||||||
return [{id:'-2',label:'Error'}];;
|
return [{id:'-2',label:'Error'}];
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -133,7 +133,7 @@ private fetch (link,id,oafEntityType,type, properties:EnvProperties ){
|
||||||
}))
|
}))
|
||||||
.pipe(catchError((ex) => {
|
.pipe(catchError((ex) => {
|
||||||
console.error('An error occured', ex);
|
console.error('An error occured', ex);
|
||||||
return [{id:'-2',label:'Error'}];;
|
return [{id:'-2',label:'Error'}];
|
||||||
}));
|
}));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue