Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix undefined errors on Activity page #32378

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions web_src/js/components/RepoActivityTopAuthors.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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);
Expand Down
Loading