diff --git a/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-alb/index.ts b/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-alb/index.ts index 52373c06..def93e1b 100644 --- a/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-alb/index.ts +++ b/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-alb/index.ts @@ -3,7 +3,7 @@ import { CertInfo } from '@certd/plugin-cert'; import { AliyunAccess, AliyunClient, AliyunSslClient, createCertDomainGetterInputDefine, createRemoteSelectInputDefine } from '@certd/plugin-lib'; @IsTaskPlugin({ - name: 'AliyunDeployCertToLB', + name: 'AliyunDeployCertToALB', title: '阿里云-部署至ALB(应用负载均衡)', icon: 'ant-design:aliyun-outlined', group: pluginGroups.aliyun.key, @@ -43,7 +43,7 @@ export class AliyunDeployCertToALB extends AbstractTaskPlugin { @TaskInput( createRemoteSelectInputDefine({ - title: 'LB所在地区', + title: 'ALB所在地区', typeName: 'AliyunDeployCertToALB', multi: false, action: AliyunDeployCertToALB.prototype.onGetRegionList.name, diff --git a/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-nlb/index.ts b/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-nlb/index.ts index fef573a6..56e0af2e 100644 --- a/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-nlb/index.ts +++ b/packages/ui/certd-server/src/plugins/plugin-aliyun/plugin/deploy-to-nlb/index.ts @@ -3,7 +3,7 @@ import { CertInfo } from '@certd/plugin-cert'; import { AliyunAccess, AliyunClient, AliyunSslClient, createCertDomainGetterInputDefine, createRemoteSelectInputDefine } from '@certd/plugin-lib'; @IsTaskPlugin({ - name: 'AliyunDeployCertToLB', + name: 'AliyunDeployCertToNLB', title: '阿里云-部署至NLB(网络负载均衡)', icon: 'ant-design:aliyun-outlined', group: pluginGroups.aliyun.key, @@ -43,7 +43,7 @@ export class AliyunDeployCertToNLB extends AbstractTaskPlugin { @TaskInput( createRemoteSelectInputDefine({ - title: 'LB所在地区', + title: 'NLB所在地区', typeName: 'AliyunDeployCertToNLB', multi: false, action: AliyunDeployCertToNLB.prototype.onGetRegionList.name,