mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-29 03:33:47 +02:00
Random fixes
This commit is contained in:
@@ -185,7 +185,7 @@
|
||||
const friendsInCurrentInstance = lastLocation.value.friendList;
|
||||
for (const friend of friendsInCurrentInstance.values()) {
|
||||
const ctx = friends.value.get(friend.userId);
|
||||
if (typeof ctx.ref === 'undefined') {
|
||||
if (typeof ctx?.ref === 'undefined') {
|
||||
continue;
|
||||
}
|
||||
D.friendsInInstance.push(ctx);
|
||||
|
||||
@@ -594,7 +594,7 @@
|
||||
const friendsInCurrentInstance = lastLocation.value.friendList;
|
||||
for (const friend of friendsInCurrentInstance.values()) {
|
||||
const ctx = friends.value.get(friend.userId);
|
||||
if (typeof ctx.ref === 'undefined') {
|
||||
if (typeof ctx?.ref === 'undefined') {
|
||||
continue;
|
||||
}
|
||||
D.friendsInInstance.push(ctx);
|
||||
|
||||
@@ -249,7 +249,7 @@
|
||||
style="margin-left: 5px"
|
||||
@click="showBioDialog"></el-button>
|
||||
</div>
|
||||
<div v-if="translationApi" style="float: right">
|
||||
<div v-if="translationApi && userDialog.ref.bio" style="float: right">
|
||||
<el-button type="text" size="small" style="margin-left: 5px" @click="translateBio"
|
||||
><i class="ri-translate-2"></i
|
||||
></el-button>
|
||||
|
||||
Reference in New Issue
Block a user