mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-07 06:56:04 +02:00
Previous instances dialog height
This commit is contained in:
@@ -68,7 +68,7 @@
|
|||||||
dialogState.value.pageIndex = value;
|
dialogState.value.pageIndex = value;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const tableStyle = { maxHeight: '400px' };
|
const tableStyle = { maxHeight: '100%' };
|
||||||
const search = computed({
|
const search = computed({
|
||||||
get: () => dialogState.value.search,
|
get: () => dialogState.value.search,
|
||||||
set: (value) => {
|
set: (value) => {
|
||||||
|
|||||||
@@ -105,7 +105,7 @@
|
|||||||
getListState().pageSize = value;
|
getListState().pageSize = value;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
const tableStyle = { maxHeight: '400px' };
|
const tableStyle = { maxHeight: '100%' };
|
||||||
const search = computed({
|
const search = computed({
|
||||||
get: () => getListState().search,
|
get: () => getListState().search,
|
||||||
set: (value) => {
|
set: (value) => {
|
||||||
|
|||||||
@@ -519,20 +519,6 @@
|
|||||||
</Select>
|
</Select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
|
||||||
v-if="mutualFriendsError"
|
|
||||||
@click="openExternalLink('https://docs.vrchat.com/docs/vrchat-202542#mutuals')"
|
|
||||||
style="
|
|
||||||
margin-top: 20px;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
color: #f56c6c;
|
|
||||||
cursor: pointer;
|
|
||||||
">
|
|
||||||
<AlertTriangle style="margin-right: 5px" />
|
|
||||||
<span>Mutual Friends unavailable due to VRChat staged rollout, click for more info</span>
|
|
||||||
</div>
|
|
||||||
<ul class="x-friend-list" style="margin-top: 10px; overflow: auto; max-height: 250px; min-width: 130px">
|
<ul class="x-friend-list" style="margin-top: 10px; overflow: auto; max-height: 250px; min-width: 130px">
|
||||||
<li
|
<li
|
||||||
v-for="user in userDialog.mutualFriends"
|
v-for="user in userDialog.mutualFriends"
|
||||||
@@ -1477,7 +1463,6 @@
|
|||||||
|
|
||||||
const isEditNoteAndMemoDialogVisible = ref(false);
|
const isEditNoteAndMemoDialogVisible = ref(false);
|
||||||
const vrchatCredit = ref(null);
|
const vrchatCredit = ref(null);
|
||||||
const mutualFriendsError = ref(false);
|
|
||||||
const treeData = ref({});
|
const treeData = ref({});
|
||||||
|
|
||||||
const userDialogAvatars = computed(() => {
|
const userDialogAvatars = computed(() => {
|
||||||
@@ -2189,7 +2174,6 @@
|
|||||||
const mutualIds = userDialog.value.mutualFriends.map((u) => u.id);
|
const mutualIds = userDialog.value.mutualFriends.map((u) => u.id);
|
||||||
database.updateMutualsForFriend(userId, mutualIds);
|
database.updateMutualsForFriend(userId, mutualIds);
|
||||||
}
|
}
|
||||||
mutualFriendsError.value = !success;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user