From 8f610f12441688f4a267eee9a6db0eb724e67a07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Mon, 9 Mar 2026 13:50:18 +0800 Subject: [PATCH] Fix array destructuring bug in moveJustCreateUserToFirstRow Co-Authored-By: Claude Opus 4.6 --- src/views/AccountManagement/AccountAdmin/AccountAdmin.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue b/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue index 051a985..6433c43 100644 --- a/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue +++ b/src/views/AccountManagement/AccountAdmin/AccountAdmin.vue @@ -305,7 +305,7 @@ const moveJustCreateUserToFirstRow = () => { (user) => user.username === acctMgmtStore.justCreateUsername, ); if (index !== -1) { - const [justCreateUser] = acctMgmtStore.allUserAccountList[index]; + const justCreateUser = acctMgmtStore.allUserAccountList[index]; infiniteAcctData.value.unshift(justCreateUser); } }