Fix instance creator in dialogs not loading

This commit is contained in:
Natsumi
2025-10-01 10:27:19 +13:00
parent f9229b08b1
commit febeb84c25
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -674,7 +674,7 @@ export const useInstanceStore = defineStore('Instance', () => {
userId: L.userId userId: L.userId
}) })
.then((args) => { .then((args) => {
L.user = args.ref; Object.assign(L.user, args.ref);
}); });
} else { } else {
L.user = ref; L.user = ref;
+1 -1
View File
@@ -1037,7 +1037,7 @@ export const useUserStore = defineStore('User', () => {
userId: L.userId userId: L.userId
}) })
.then((args) => { .then((args) => {
D.$location.user = args.ref; Object.assign(L.user, args.ref);
}); });
} else { } else {
L.user = ref; L.user = ref;