diff --git a/frontend/src/components/Contributions/ContributionList.vue b/frontend/src/components/Contributions/ContributionList.vue index 11cc0f9dd..ca4e7a9a0 100644 --- a/frontend/src/components/Contributions/ContributionList.vue +++ b/frontend/src/components/Contributions/ContributionList.vue @@ -4,6 +4,7 @@ {{ memo }}
@@ -141,6 +141,11 @@ export default { type: Number, required: true, }, + allContribution: { + type: Boolean, + required: false, + default: false, + }, }, data() { return { diff --git a/frontend/src/pages/Community.vue b/frontend/src/pages/Community.vue index 8906f40e7..c98bfff2d 100644 --- a/frontend/src/pages/Community.vue +++ b/frontend/src/pages/Community.vue @@ -73,6 +73,7 @@ :contributionCount="contributionCountAll" :showPagination="true" :pageSize="pageSizeAll" + :allContribution="true" />