]> source.dussan.org Git - gitea.git/commitdiff
Fix undefined errors on Activity page (#32378)
authorcloudchamb3r <jizon0123@protonmail.com>
Wed, 30 Oct 2024 06:48:13 +0000 (15:48 +0900)
committerGitHub <noreply@github.com>
Wed, 30 Oct 2024 06:48:13 +0000 (14:48 +0800)
close #32377

Co-authored-by: Giteabot <teabot@gitea.io>
web_src/js/components/RepoActivityTopAuthors.vue

index 054bf6126eca3d550a9c6ca6ded2317dd49cad8a..1f5e9825ba1ea0907f89fb90129cf5c43fa6f2f0 100644 (file)
@@ -17,7 +17,7 @@ const colors = ref({
 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,
@@ -26,7 +26,7 @@ const graphPoints = computed(() => {
 });
 
 const graphAuthors = computed(() => {
-  return activityTopAuthors.value.map((item, idx) => {
+  return activityTopAuthors.map((item, idx) => {
     return {
       position: idx + 1,
       ...item,
@@ -35,7 +35,7 @@ const graphAuthors = computed(() => {
 });
 
 const graphWidth = computed(() => {
-  return activityTopAuthors.value.length * 40;
+  return activityTopAuthors.length * 40;
 });
 
 const styleElement = ref<HTMLElement | null>(null);