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 745b3eb commit e07675bCopy full SHA for e07675b
app/components/Compare/FacetQuadrantChart.vue
@@ -112,7 +112,12 @@ const rawQuadrant = computed(() => createQuadrantDataset(source.value))
112
const dataset = computed<VueUiQuadrantDatasetItem[]>(() => {
113
return rawQuadrant.value.map((el: PackageQuadrantPoint) => {
114
return {
115
- ...el,
+ adoptionScore: el.adoptionScore,
116
+ efficiencyScore: el.efficiencyScore,
117
+ id: el.id,
118
+ license: el.license,
119
+ metrics: el.metrics,
120
+ quadrant: el.quadrant,
121
fullname: el.name,
122
name: applyEllipsis(el.name, 20),
123
shape: 'circle',
0 commit comments