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

View File

@@ -674,7 +674,7 @@ export const useInstanceStore = defineStore('Instance', () => {
userId: L.userId
})
.then((args) => {
L.user = args.ref;
Object.assign(L.user, args.ref);
});
} else {
L.user = ref;

View File

@@ -1037,7 +1037,7 @@ export const useUserStore = defineStore('User', () => {
userId: L.userId
})
.then((args) => {
D.$location.user = args.ref;
Object.assign(L.user, args.ref);
});
} else {
L.user = ref;