Previous instances dialog height

This commit is contained in:
Natsumi
2026-02-12 15:33:25 +13:00
committed by pa
parent 5ad4713373
commit 689549ecab
3 changed files with 2 additions and 18 deletions

View File

@@ -68,7 +68,7 @@
dialogState.value.pageIndex = value;
}
});
const tableStyle = { maxHeight: '400px' };
const tableStyle = { maxHeight: '100%' };
const search = computed({
get: () => dialogState.value.search,
set: (value) => {

View File

@@ -105,7 +105,7 @@
getListState().pageSize = value;
}
});
const tableStyle = { maxHeight: '400px' };
const tableStyle = { maxHeight: '100%' };
const search = computed({
get: () => getListState().search,
set: (value) => {

View File

@@ -519,20 +519,6 @@
</Select>
</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">
<li
v-for="user in userDialog.mutualFriends"
@@ -1477,7 +1463,6 @@
const isEditNoteAndMemoDialogVisible = ref(false);
const vrchatCredit = ref(null);
const mutualFriendsError = ref(false);
const treeData = ref({});
const userDialogAvatars = computed(() => {
@@ -2189,7 +2174,6 @@
const mutualIds = userDialog.value.mutualFriends.map((u) => u.id);
database.updateMutualsForFriend(userId, mutualIds);
}
mutualFriendsError.value = !success;
}
});
}