mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-25 17:10:43 +00:00
Update room.core.vue
This commit is contained in:
parent
4591b940c3
commit
99659a89b4
1 changed files with 10 additions and 1 deletions
|
|
@ -139,7 +139,10 @@ SPDX-License-Identifier: AGPL-3.0-only
|
|||
</template>
|
||||
|
||||
<div v-if="pointedPlayerInfo.user != null">
|
||||
<img v-if="pointedPlayerInfo.user.avatarUrl" :src="pointedPlayerInfo.user.avatarUrl" decoding="async"/>
|
||||
<MkA :to="`/@${pointedPlayerInfo.user.username}`">
|
||||
<img v-if="pointedPlayerInfo.user.avatarUrl" :class="$style.pointedPlayerInfoAvatar" :src="pointedPlayerInfo.user.avatarUrl" decoding="async"/>
|
||||
<span>@{{ pointedPlayerInfo.user.username }}</span>
|
||||
</MkA>
|
||||
</div>
|
||||
<div v-else>anonymous</div>
|
||||
</XOverlayPanel>
|
||||
|
|
@ -941,6 +944,12 @@ function enterOnline() {
|
|||
display: none;
|
||||
}
|
||||
|
||||
.pointedPlayerInfoAvatar {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 100%;
|
||||
}
|
||||
|
||||
.loading {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue