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

Merge branch 'memberlist_button_remove' into 'main'

Members list icon removal

See merge request !60
parents c1f24544 4e8c9e9c
No related branches found
No related tags found
1 merge request!60Members list icon removal
Pipeline #178228 passed
<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