File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const colors = ref({
1717const activityTopAuthors = window .config .pageData .repoActivityTopAuthors || [];
1818
1919const graphPoints = computed (() => {
20- return activityTopAuthors .value . map ((item ) => {
20+ return activityTopAuthors .map ((item ) => {
2121 return {
2222 value: item .commits ,
2323 label: item .name ,
@@ -26,7 +26,7 @@ const graphPoints = computed(() => {
2626});
2727
2828const graphAuthors = computed (() => {
29- return activityTopAuthors .value . map ((item , idx ) => {
29+ return activityTopAuthors .map ((item , idx ) => {
3030 return {
3131 position: idx + 1 ,
3232 ... item ,
@@ -35,7 +35,7 @@ const graphAuthors = computed(() => {
3535});
3636
3737const graphWidth = computed (() => {
38- return activityTopAuthors .value . length * 40 ;
38+ return activityTopAuthors .length * 40 ;
3939});
4040
4141const styleElement = ref <HTMLElement | null >(null );
You can’t perform that action at this time.
0 commit comments