We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd27e5b commit 5b29c6fCopy full SHA for 5b29c6f
src/flow/flow.service.ts
@@ -457,6 +457,7 @@ export class FlowService {
457
.map(({ project, percentage, star }, index) => {
458
return {
459
id: project!.id,
460
+ project,
461
rank: index + 1,
462
star,
463
share: percentage,
@@ -467,6 +468,7 @@ export class FlowService {
467
468
}),
469
...oneRatingProjects.map((project, index) => ({
470
471
472
rank: result.length + index + 1,
473
star: 1,
474
share: 0,
@@ -476,6 +478,7 @@ export class FlowService {
476
478
})),
477
479
...allCoIs.map(({ project }, index) => ({
480
481
482
rank: result.length + oneRatingProjects.length + index + 1,
483
star: 0, // conflict of interest
484
0 commit comments