Remove join count on current user

This commit is contained in:
Natsumi
2021-10-02 08:13:32 +13:00
parent bde65ffe18
commit c48a6cc38f

View File

@@ -1224,14 +1224,15 @@ html
template(#content) template(#content)
span(v-text="link") span(v-text="link")
img(:src="getFaviconUrl(link)" style="width:16px;height:16px;vertical-align:middle;margin-right:5px;cursor:pointer" @click.stop="openExternalLink(link)") img(:src="getFaviconUrl(link)" style="width:16px;height:16px;vertical-align:middle;margin-right:5px;cursor:pointer" @click.stop="openExternalLink(link)")
.x-friend-item(style="cursor:default") template(v-if="API.currentUser.id !== userDialog.id")
.detail .x-friend-item(style="cursor:default")
span.name Last Seen .detail
span.extra {{ userDialog.lastSeen | formatDate('YYYY-MM-DD HH24:MI:SS') || '-' }} span.name Last Seen
.x-friend-item(style="cursor:default") span.extra {{ userDialog.lastSeen | formatDate('YYYY-MM-DD HH24:MI:SS') || '-' }}
.detail .x-friend-item(style="cursor:default")
span.name Join Count .detail
span.extra(v-text="userDialog.joinCount") span.name Join Count
span.extra(v-text="userDialog.joinCount")
.x-friend-item(style="cursor:default") .x-friend-item(style="cursor:default")
.detail .detail
span.name(v-if="userDialog.ref.state === 'online' && userDialog.ref.$online_for") Online For span.name(v-if="userDialog.ref.state === 'online' && userDialog.ref.$online_for") Online For