[Trunk|Admin]: Remove getTine from affiliations logo and website urls.

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@56671 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2019-07-22 13:46:55 +00:00
parent e714c7543d
commit 0b0baece09
1 changed files with 0 additions and 8 deletions

View File

@ -187,12 +187,6 @@ export class AffiliationsComponent implements OnInit {
addAffiliation() {
if (!this.isEmptyAffiliation()) {
this.utilitiesService.getTiny(this.properties.utilsService + '/tiny?url=' + this.affiliation.logo_url).subscribe((logo_url)=> {
this.affiliation.logo_url = logo_url;
this.utilitiesService.getTiny(this.properties.utilsService + '/tiny?url='+ this.affiliation.website_url).subscribe((website_url) => {
this.affiliation.website_url = website_url;
if (!this.curatorAffiliations) {
this.updateCommunityAffiliations(this.index);
} else {
@ -203,8 +197,6 @@ export class AffiliationsComponent implements OnInit {
}
}
this.change();
});
})
}
}