fix(channel): 修复多密钥管理弹窗索引显示,将索引值调整为从1开始 (#4231)
This commit is contained in:
parent
ee7cedd577
commit
d0c2d2c6fb
@ -360,7 +360,7 @@ const MultiKeyManageModal = ({ visible, onCancel, channel, onRefresh }) => {
|
|||||||
{
|
{
|
||||||
title: t('索引'),
|
title: t('索引'),
|
||||||
dataIndex: 'index',
|
dataIndex: 'index',
|
||||||
render: (text) => `#${text}`,
|
render: (text) => `#${Number(text) + 1}`,
|
||||||
},
|
},
|
||||||
// {
|
// {
|
||||||
// title: t('密钥预览'),
|
// title: t('密钥预览'),
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user