refactor(sidebar): show Profile before Settings in the user menu
This commit is contained in:
parent
9f5ce8bef2
commit
e4806c7662
1 changed files with 6 additions and 6 deletions
|
|
@ -77,18 +77,18 @@ const handleLogout = () => {
|
|||
</DropdownMenuLabel>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuGroup>
|
||||
<DropdownMenuItem :as-child="true">
|
||||
<Link class="block w-full cursor-pointer" :href="settingsHub.url()" prefetch>
|
||||
<IconSettings class="size-4" />
|
||||
{{ $t('sidebar.settings') }}
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem :as-child="true">
|
||||
<Link class="block w-full cursor-pointer" :href="edit()" prefetch>
|
||||
<IconUser class="size-4" />
|
||||
{{ $t('sidebar.profile') }}
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem :as-child="true">
|
||||
<Link class="block w-full cursor-pointer" :href="settingsHub.url()" prefetch>
|
||||
<IconSettings class="size-4" />
|
||||
{{ $t('sidebar.settings') }}
|
||||
</Link>
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuGroup>
|
||||
<DropdownMenuSeparator />
|
||||
<DropdownMenuGroup>
|
||||
|
|
|
|||
Loading…
Reference in a new issue