diff --git a/src/views/CommunityViews/CommunityView.vue b/src/views/CommunityViews/CommunityView.vue index ec15f922c12aec8be23ae29104abc6be91972fb2..97b774a1c48dc778df7996ae32c0e743e7435f6e 100644 --- a/src/views/CommunityViews/CommunityView.vue +++ b/src/views/CommunityViews/CommunityView.vue @@ -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();