feat: rename certificate props 'issuer' to 'issuerOrg'

This commit is contained in:
Fu Diwei
2025-05-19 10:35:05 +08:00
parent 3462e454d0
commit 3098f6a82f
6 changed files with 37 additions and 8 deletions

View File

@@ -126,11 +126,11 @@ const CertificateList = () => {
},
},
{
key: "issuer",
key: "brand",
title: t("certificate.props.brand"),
render: (_, record) => (
<Space className="max-w-full" direction="vertical" size={4}>
<Typography.Text>{record.issuer}</Typography.Text>
<Typography.Text>{record.issuerOrg}</Typography.Text>
<Typography.Text>{record.keyAlgorithm}</Typography.Text>
</Space>
),