From f7454e31460b4d6923f81a23a1f17d5be5b1d3ac Mon Sep 17 00:00:00 2001 From: ogerly Date: Tue, 13 Sep 2022 10:18:16 +0200 Subject: [PATCH] fix bug --- .../src/components/Contributions/ContributionList.vue | 6 ++++++ .../components/Contributions/ContributionListItem.vue | 9 +++++++-- frontend/src/pages/Community.vue | 1 + 3 files changed, 14 insertions(+), 2 deletions(-) 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" />