Fix "Not Participating" filter checkbox on Discover Challenges screen, Fixes #13025 (#13183)

* change 'role' options and filters to 'membership'

* added membership filtering function to discover challenges

* fix accidental deletion

* complete removal of roles from challenge filters

* abstract challenge "participating" filtering into mixin

* selecting "participating" and "not participating" shows all challenges
This commit is contained in:
Liza
2021-05-28 17:57:03 -04:00
committed by GitHub
parent f097077009
commit 9e655d70d2
4 changed files with 36 additions and 60 deletions

View File

@@ -31,7 +31,8 @@
</div>
<div class="row">
<div
v-if="!loading && filteredChallenges.length === 0"
v-if="!loading &&
this.filteredChallenges.length === 0"
class="no-challenges text-center col-md-6 offset-3"
>
<h2 v-once>
@@ -41,7 +42,7 @@
</div>
<div class="row">
<div
v-for="challenge in filteredChallenges"
v-for="challenge in this.filteredChallenges"
:key="challenge._id"
class="col-12 col-md-6"
>
@@ -170,9 +171,6 @@ export default {
},
computed: {
...mapState({ user: 'user.data' }),
filteredChallenges () {
return this.challenges;
},
},
mounted () {
this.$store.dispatch('common:setTitle', {