fix(ui): [WIP] Sidebar add temporary user icon and router links until popover menus are in place
This commit is contained in:
parent
2273cab38d
commit
3ad476fdfa
|
@ -33,7 +33,7 @@ const uploads = useUploadsStore()
|
||||||
>
|
>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link to="/settings"
|
<Link to="/manage/settings"
|
||||||
icon="bi-wrench"
|
icon="bi-wrench"
|
||||||
color="secondary"
|
color="secondary"
|
||||||
variant="ghost">
|
variant="ghost">
|
||||||
|
@ -57,13 +57,8 @@ const uploads = useUploadsStore()
|
||||||
</Transition>
|
</Transition>
|
||||||
</Link>
|
</Link>
|
||||||
|
|
||||||
<Link to="/inbox"
|
<Link to="/settings"
|
||||||
icon="bi-inbox"
|
icon="bi-person-fill"
|
||||||
color="secondary"
|
|
||||||
variant="ghost"
|
|
||||||
/>
|
|
||||||
<Link to="/inbox"
|
|
||||||
icon="bi-inbox"
|
|
||||||
color="secondary"
|
color="secondary"
|
||||||
variant="ghost"
|
variant="ghost"
|
||||||
>
|
>
|
||||||
|
@ -72,10 +67,10 @@ const uploads = useUploadsStore()
|
||||||
alt=""
|
alt=""
|
||||||
:src="store.getters['instance/absoluteUrl'](store.state.auth.profile?.avatar.urls.medium_square_crop)"
|
:src="store.getters['instance/absoluteUrl'](store.state.auth.profile?.avatar.urls.medium_square_crop)"
|
||||||
>
|
>
|
||||||
<!--ActorAvatar
|
<actor-avatar
|
||||||
v-else-if="store.state.auth.authenticated"
|
v-else-if="store.state.auth.authenticated"
|
||||||
:actor="{preferred_username: store.state.auth.username, full_username: store.state.auth.username,}"
|
:actor="{preferred_username: store.state.auth.username, full_username: store.state.auth.username,}"
|
||||||
/-->
|
/>
|
||||||
<i
|
<i
|
||||||
v-else
|
v-else
|
||||||
class="cog icon"
|
class="cog icon"
|
||||||
|
@ -86,6 +81,7 @@ const uploads = useUploadsStore()
|
||||||
<div class="search">
|
<div class="search">
|
||||||
<Input
|
<Input
|
||||||
v-model="searchQuery"
|
v-model="searchQuery"
|
||||||
|
type="search"
|
||||||
icon="bi-search"
|
icon="bi-search"
|
||||||
:placeholder="t('components.audio.SearchBar.placeholder.search')"
|
:placeholder="t('components.audio.SearchBar.placeholder.search')"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue