Retain dialog data when reopening same dialog

This commit is contained in:
Natsumi
2026-01-31 05:56:32 +13:00
committed by pa
parent 5ff078e351
commit bf687a2405
8 changed files with 76 additions and 46 deletions
+4
View File
@@ -142,6 +142,10 @@ export const useGroupStore = defineStore('Group', () => {
});
const D = groupDialog.value;
D.visible = true;
if (D.id === groupId) {
uiStore.setDialogCrumbLabel('group', D.id, D.ref?.name || D.id);
return;
}
D.loading = true;
D.id = groupId;
D.inGroup = false;