File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const colors = ref({
17
17
const activityTopAuthors = window .config .pageData .repoActivityTopAuthors || [];
18
18
19
19
const graphPoints = computed (() => {
20
- return activityTopAuthors .value . map ((item ) => {
20
+ return activityTopAuthors .map ((item ) => {
21
21
return {
22
22
value: item .commits ,
23
23
label: item .name ,
@@ -26,7 +26,7 @@ const graphPoints = computed(() => {
26
26
});
27
27
28
28
const graphAuthors = computed (() => {
29
- return activityTopAuthors .value . map ((item , idx ) => {
29
+ return activityTopAuthors .map ((item , idx ) => {
30
30
return {
31
31
position: idx + 1 ,
32
32
... item ,
@@ -35,7 +35,7 @@ const graphAuthors = computed(() => {
35
35
});
36
36
37
37
const graphWidth = computed (() => {
38
- return activityTopAuthors .value . length * 40 ;
38
+ return activityTopAuthors .length * 40 ;
39
39
});
40
40
41
41
const styleElement = ref <HTMLElement | null >(null );
You can’t perform that action at this time.
0 commit comments