Skip to content
Snippets Groups Projects
Commit 4e8c9e9c authored by Titus Netland's avatar Titus Netland
Browse files

Community home fix, removed button for memberslist

parent c1f24544
No related branches found
No related tags found
1 merge request!60Members list icon removal
Pipeline #178221 passed with stage
in 50 seconds
<template>
<section class="w-full px-5 py-4 mx-auto rounded-md">
<div>
<img
class="cursor-pointer h-8 float-right"
v-if="isLoggedIn"
src="@/assets/members.png"
alt="Medlemmer"
@click="$router.push('/group/:id/memberlist')"
/>
</div>
<CommunityHeader :admin-status="false" :community="community" class="mb-5"/>
<!-- Search field -->
......@@ -74,7 +64,6 @@ export default {
data() {
return {
isLoggedIn: false,
items: [],
item: {
img: "",
......@@ -98,7 +87,6 @@ export default {
},
},
beforeMount() {
if (this.$store.state.user.token !== null){this.isLoggedIn = true}
this.getCommunityFromAPI(); //To get the id of the community before mounting the view
this.getListingsOfCommunityFromAPI();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment