We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7990399 commit 3793efdCopy full SHA for 3793efd
pages/auth/settings/blacklist.vue
@@ -32,13 +32,13 @@ import { mapGetters } from 'vuex'
32
data() {
33
return {
34
blacklistedUsers: [],
35
+ isLoading: true
36
}
37
},
38
computed: {
39
...mapGetters({
40
loggedInUser: 'auth/user',
- userSettings: 'feathers-vuex-usersettings/current',
41
- isLoading: 'feathers-vuex-usersettings/isPending'
+ userSettings: 'feathers-vuex-usersettings/current'
42
})
43
44
async mounted(){
@@ -50,6 +50,7 @@ import { mapGetters } from 'vuex'
50
51
52
this.blacklistedUsers = res.data
53
+ this.isLoading = false
54
55
};
56
</script>
0 commit comments