const activityTopAuthors = window.config.pageData.repoActivityTopAuthors || [];
const graphPoints = computed(() => {
- return activityTopAuthors.value.map((item) => {
+ return activityTopAuthors.map((item) => {
return {
value: item.commits,
label: item.name,
});
const graphAuthors = computed(() => {
- return activityTopAuthors.value.map((item, idx) => {
+ return activityTopAuthors.map((item, idx) => {
return {
position: idx + 1,
...item,
});
const graphWidth = computed(() => {
- return activityTopAuthors.value.length * 40;
+ return activityTopAuthors.length * 40;
});
const styleElement = ref<HTMLElement | null>(null);