add one more check for the imported data
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@46353 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
d19c45c193
commit
88c3173d54
|
@ -65,14 +65,16 @@ export class CiteThisComponent {
|
||||||
if(this.result.publisher){
|
if(this.result.publisher){
|
||||||
citationData.publisher = this.result.publisher;
|
citationData.publisher = this.result.publisher;
|
||||||
}
|
}
|
||||||
citationData.author = [];
|
if( this.result.authors){
|
||||||
for (var i =0 ;i < this.result.authors.length; i++){
|
citationData.author = [];
|
||||||
if(this.result.authors[i].name && this.result.authors[i].name.indexOf(", ") !== -1){
|
for (var i =0 ;i < this.result.authors.length; i++){
|
||||||
citationData.author.push({given:this.result.authors[i].name.split(", ")[0], family:this.result.authors[i].name.split(", ")[1], 'parse-names':true});
|
if(this.result.authors[i].name && this.result.authors[i].name.indexOf(", ") !== -1){
|
||||||
}else{
|
citationData.author.push({given:this.result.authors[i].name.split(", ")[0], family:this.result.authors[i].name.split(", ")[1], 'parse-names':true});
|
||||||
citationData.author.push({given:"", family:this.result.authors[i].name, 'parse-names':true});
|
}else{
|
||||||
|
citationData.author.push({given:"", family:this.result.authors[i].name, 'parse-names':true});
|
||||||
|
}
|
||||||
|
citationData.authors.push(this.result.authors[i].name);
|
||||||
}
|
}
|
||||||
citationData.authors.push(this.result.authors[i].name);
|
|
||||||
}
|
}
|
||||||
if(this.result.dateofacceptance != undefined){
|
if(this.result.dateofacceptance != undefined){
|
||||||
citationData.issued = [];
|
citationData.issued = [];
|
||||||
|
|
Loading…
Reference in New Issue