Commit d0c2d2c6 by wans10 Committed by GitHub

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

parent ee7cedd5
...@@ -360,7 +360,7 @@ const MultiKeyManageModal = ({ visible, onCancel, channel, onRefresh }) => { ...@@ -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('密钥预览'),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment