mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 14:53:50 +02:00
fix
This commit is contained in:
@@ -11,7 +11,7 @@
|
|||||||
<DialogTitle>{{ t('dialog.invite.header') }}</DialogTitle>
|
<DialogTitle>{{ t('dialog.invite.header') }}</DialogTitle>
|
||||||
</DialogHeader>
|
</DialogHeader>
|
||||||
|
|
||||||
<div v-if="inviteDialog.visible">
|
<div v-if="inviteDialog.visible" class="overflow-hidden">
|
||||||
<Location :location="inviteDialog.worldId" :link="false" class="cursor-default" />
|
<Location :location="inviteDialog.worldId" :link="false" class="cursor-default" />
|
||||||
<br />
|
<br />
|
||||||
<Button size="sm" class="mr-2" variant="outline" style="margin-top: 10px" @click="addSelfToInvite">{{
|
<Button size="sm" class="mr-2" variant="outline" style="margin-top: 10px" @click="addSelfToInvite">{{
|
||||||
|
|||||||
@@ -11,7 +11,8 @@
|
|||||||
{{ friend.ref.displayName }} ({{ friend.$nickName }})
|
{{ friend.ref.displayName }} ({{ friend.$nickName }})
|
||||||
</span>
|
</span>
|
||||||
<span v-else class="name" :style="{ color: friend.ref.$userColour }"
|
<span v-else class="name" :style="{ color: friend.ref.$userColour }"
|
||||||
>{{ friend.ref.displayName }}{{ isGroupByInstance && friend.isVIP ? ' ⭐' : '' }}</span
|
>{{ friend.ref.displayName
|
||||||
|
}}{{ isGroupByInstance && allFavoriteFriendIds.has(friend.id) ? ' ⭐' : '' }}</span
|
||||||
>
|
>
|
||||||
|
|
||||||
<span v-if="isFriendActiveOrOffline" class="block truncate text-xs">{{
|
<span v-if="isFriendActiveOrOffline" class="block truncate text-xs">{{
|
||||||
@@ -80,7 +81,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
const { hideNicknames } = storeToRefs(useAppearanceSettingsStore());
|
const { hideNicknames } = storeToRefs(useAppearanceSettingsStore());
|
||||||
const { isRefreshFriendsLoading } = storeToRefs(useFriendStore());
|
const { isRefreshFriendsLoading, allFavoriteFriendIds } = storeToRefs(useFriendStore());
|
||||||
const { confirmDeleteFriend } = useFriendStore();
|
const { confirmDeleteFriend } = useFriendStore();
|
||||||
const { showUserDialog } = useUserStore();
|
const { showUserDialog } = useUserStore();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|||||||
Reference in New Issue
Block a user