Update users in instances when reopening same dialogs

This commit is contained in:
Natsumi
2026-02-10 22:01:34 +13:00
parent a565772ec9
commit ac74a1a360
3 changed files with 3 additions and 0 deletions

View File

@@ -143,6 +143,7 @@ export const useGroupStore = defineStore('Group', () => {
D.visible = true;
if (D.id === groupId) {
uiStore.setDialogCrumbLabel('group', D.id, D.ref?.name || D.id);
instanceStore.applyGroupDialogInstances();
return;
}
D.loading = true;

View File

@@ -790,6 +790,7 @@ export const useUserStore = defineStore('User', () => {
D.id,
D.ref?.displayName || D.id
);
applyUserDialogLocation();
return;
}
D.id = userId;

View File

@@ -89,6 +89,7 @@ export const useWorldStore = defineStore('World', () => {
D.visible = true;
if (D.id === L.worldId) {
uiStore.setDialogCrumbLabel('world', D.id, D.ref?.name || D.id);
instanceStore.applyWorldDialogInstances();
return;
}
L.shortName = shortName;