fix(channel): 修复多密钥管理弹窗索引显示,将索引值调整为从1开始 (#4231)

This commit is contained in:
wans10 2026-04-15 20:53:58 +08:00 committed by GitHub
parent ee7cedd577
commit d0c2d2c6fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -360,7 +360,7 @@ const MultiKeyManageModal = ({ visible, onCancel, channel, onRefresh }) => {
{
title: t('索引'),
dataIndex: 'index',
render: (text) => `#${text}`,
render: (text) => `#${Number(text) + 1}`,
},
// {
// title: t(''),