diff --git a/src/stores/acctMgmt.ts b/src/stores/acctMgmt.ts index 7331130..77ca21b 100644 --- a/src/stores/acctMgmt.ts +++ b/src/stores/acctMgmt.ts @@ -60,6 +60,7 @@ export default defineStore('acctMgmtStore', { */ setCurrentViewingUser(username: string) { const userFind:User|undefined = this.allUserAccoutList.find(user => user.username === username); + console.log('userFind', userFind); this.currentViewingUser = userFind ? userFind : { username: '', detail: {} }; }, /** diff --git a/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue b/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue index afc9c08..7e01c55 100644 --- a/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue +++ b/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue @@ -79,7 +79,7 @@