Fix dialog loading state

This commit is contained in:
Natsumi
2026-02-11 17:49:21 +13:00
parent 684298b026
commit 93e305620d
3 changed files with 6 additions and 1 deletions
+2
View File
@@ -185,6 +185,7 @@ export const useAvatarStore = defineStore('Avatar', () => {
D.visible = true;
if (D.id === avatarId) {
uiStore.setDialogCrumbLabel('avatar', D.id, D.ref?.name || D.id);
D.loading = false;
return;
}
D.loading = true;
@@ -212,6 +213,7 @@ export const useAvatarStore = defineStore('Avatar', () => {
if (typeof ref2 !== 'undefined') {
D.ref = ref2;
uiStore.setDialogCrumbLabel('avatar', D.id, D.ref?.name || D.id);
D.loading = false;
}
avatarRequest
.getAvatar({ avatarId })