ui: show full id in switcher

zio/stable
Anthony Fu 2022-11-25 22:39:15 +08:00
parent 45b6e39b6e
commit 7065100006
2 changed files with 3 additions and 2 deletions

View File

@ -12,7 +12,7 @@ const accountHandle = $(useAccountHandle(account, fullServer))
</script> </script>
<template> <template>
<div flex gap-3> <div flex gap-3 cursor-default>
<div> <div>
<NuxtLink :to="link ? getAccountPath(account) : null"> <NuxtLink :to="link ? getAccountPath(account) : null">
<AccountAvatar :account="account" :hover="hover" w-12 h-12 /> <AccountAvatar :account="account" :hover="hover" w-12 h-12 />

View File

@ -26,7 +26,8 @@
tabindex="0" tabindex="0"
m5 p2 rounded-full m5 p2 rounded-full
hover:bg-active cursor-pointer transition-100 hover:bg-active cursor-pointer transition-100
:account="currentUser?.account" :account="currentUser.account"
:full-server="true"
:link="false" :link="false"
@keydown.enter="openUserSwitcher" @keydown.enter="openUserSwitcher"
@click="openUserSwitcher" @click="openUserSwitcher"