Skip to content

Commit

Permalink
Merge pull request #52 from TCC-Klaiton-Diogo/feature/TKD-68
Browse files Browse the repository at this point in the history
TKD-68 - Corrigir seta no menu sidebar de perfil
  • Loading branch information
Haaragard authored Oct 7, 2022
2 parents 653d019 + 74e426f commit a0fb0a3
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions resources/js/Pages/User/Profile/Partials/SidebarMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import { ref } from 'vue';
import { computed } from '@vue/reactivity';
import { usePage } from '@inertiajs/inertia-vue3';
import { ChevronRight, ChevronDown } from 'mdue';
import Sidebar from '../../../../Components/Menus/Sidebar.vue';
import Link from '../../../../Components/Links/Link.vue';
import Item from '../../../../Components/Menus/Items/Item.vue';
Expand Down Expand Up @@ -49,8 +50,10 @@ function toggleMenuItem(menuItem) { menu.value[menuItem].open = !menu.value[menu
>
Worker Settings
<template #icon>
<template v-if="isWorkerSettingsOpen">\/</template>
<template v-else>></template>
<div class="flex items-center font-black">
<ChevronDown v-if="isWorkerSettingsOpen" />
<ChevronRight v-else />
</div>
</template>
</Item>

Expand Down

0 comments on commit a0fb0a3

Please sign in to comment.