[angular-16 | DONE | CHANGED]: parsingFunctions.class.ts: In bip indicators parsing, parse citations from measure with id 'influence_alt' (old) or 'citation_count' (renamed).
This commit is contained in:
parent
aebcb81c7b
commit
4e20a39578
|
@ -888,7 +888,7 @@ export class ParsingFunctions {
|
||||||
counts.push({name: 'downloads', icon: 'download', value: element.count, order: 1});
|
counts.push({name: 'downloads', icon: 'download', value: element.count, order: 1});
|
||||||
measure.downloads = element.count;
|
measure.downloads = element.count;
|
||||||
}
|
}
|
||||||
if (element.id == 'influence_alt') {
|
if (element.id == 'influence_alt' || element.id == 'citation_count') {
|
||||||
bip.push({name: 'citations', icon: 'cite', value: element.score, order: 2});
|
bip.push({name: 'citations', icon: 'cite', value: element.score, order: 2});
|
||||||
measure.citations = element.score;
|
measure.citations = element.score;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue