From 9cafea8efbf2b020c596d51dd4ec839f88095a50 Mon Sep 17 00:00:00 2001 From: Jhonton Chen <504071088@qq.com> Date: Mon, 18 May 2026 22:56:13 +0800 Subject: [PATCH] feat(account): show account id and group in popup --- src/pages/account/Popup.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/pages/account/Popup.tsx b/src/pages/account/Popup.tsx index 258455c..8e09605 100644 --- a/src/pages/account/Popup.tsx +++ b/src/pages/account/Popup.tsx @@ -113,6 +113,16 @@ export default (props: { }, ]; const items = [ + { + key: '1_0', + label: $t('table.accountId'), + children: rowData?.account || '-', + }, + { + key: '2_0', + label: $t('table.group'), + children: rowData?.group || '-', + }, { key: '1', label: $t('table.platform'),