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

Merge branch 'home_view_update' into 'main'

Community view list updated icon

See merge request !75
parents a8609a3a 6432c2e6
No related branches found
No related tags found
1 merge request!75Community view list updated icon
Pipeline #179196 passed
......@@ -2,7 +2,7 @@
<div v-if="loggedIn">
<div class="flex flex-row p-4 relative">
<p class="capitalize font-bold w-full">Mine felleskap</p>
<PlusIcon
<UserAddIcon
class="cursor-pointer max-h-6 max-w-6 float-right grow"
@click="$router.push('/newCommunity')"
v-if="loggedIn"
......@@ -18,7 +18,7 @@
<script>
import CommunityList from "@/components/CommunityComponents/CommunityList.vue";
import { getMyGroups, getVisibleGroups } from "@/utils/apiutil";
import { PlusIcon } from "@heroicons/vue/outline";
import { UserAddIcon } from "@heroicons/vue/outline";
export default {
name: "HomeView",
......@@ -31,7 +31,7 @@ export default {
},
components: {
CommunityList,
PlusIcon,
UserAddIcon,
},
async created() {
this.publicCommunities = await getVisibleGroups();
......
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