diff options
author | cloudchamb3r <jizon0123@protonmail.com> | 2024-10-30 15:48:13 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-30 14:48:13 +0800 |
commit | f938dbc9b54873add4418b7d211c87b0b4a6d8f7 (patch) | |
tree | b337c01285da387f59f3298151d8ece26bd95ffa | |
parent | c60e4dc1095ef90a790582cacfad27c972637bb2 (diff) | |
download | gitea-f938dbc9b54873add4418b7d211c87b0b4a6d8f7.tar.gz gitea-f938dbc9b54873add4418b7d211c87b0b4a6d8f7.zip |
Fix undefined errors on Activity page (#32378)
close #32377
Co-authored-by: Giteabot <teabot@gitea.io>
-rw-r--r-- | web_src/js/components/RepoActivityTopAuthors.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/web_src/js/components/RepoActivityTopAuthors.vue b/web_src/js/components/RepoActivityTopAuthors.vue index 054bf6126e..1f5e9825ba 100644 --- a/web_src/js/components/RepoActivityTopAuthors.vue +++ b/web_src/js/components/RepoActivityTopAuthors.vue @@ -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); |