mirror of
https://github.com/vrcx-team/VRCX.git
synced 2026-04-06 00:32:02 +02:00
Fix userDialog opening behind other dialogs
This commit is contained in:
@@ -1289,8 +1289,8 @@
|
||||
|
||||
watch(
|
||||
() => groupDialog.value.loading,
|
||||
(val) => {
|
||||
if (val) {
|
||||
() => {
|
||||
if (groupDialog.value.visible) {
|
||||
nextTick(() => adjustDialogZ(groupDialogRef.value.$el));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1901,8 +1901,8 @@
|
||||
() => {
|
||||
if (userDialog.value.visible) {
|
||||
nextTick(() => {
|
||||
if (userDialogTabsRef.value?.$el) {
|
||||
adjustDialogZ(userDialogTabsRef.value.$el);
|
||||
if (userDialogRef.value?.$el) {
|
||||
adjustDialogZ(userDialogRef.value.$el);
|
||||
}
|
||||
});
|
||||
!userDialog.value.loading && toggleLastActiveTab(userDialog.value.id);
|
||||
|
||||
Reference in New Issue
Block a user