1
1
mirror of https://github.com/go-gitea/gitea synced 2024-11-01 07:44:25 +00:00

Fix undefined errors on Activity page (#32378)

close #32377

Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
cloudchamb3r 2024-10-30 15:48:13 +09:00 committed by GitHub
parent c60e4dc109
commit f938dbc9b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

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