mirror of
https://github.com/certd/certd.git
synced 2026-06-27 22:17:35 +08:00
perf: 输入证书域名时,支持点击导入域名
This commit is contained in:
+1
-1
@@ -192,7 +192,7 @@ export class HuaweiDnsProvider extends AbstractDnsProvider {
|
||||
let list = ret.zones || []
|
||||
list = list.map((item: any) => ({
|
||||
id: item.id,
|
||||
domain: item.name,
|
||||
domain: item.name.endsWith(".") ? item.name.slice(0, -1) : item.name,
|
||||
}));
|
||||
return {
|
||||
total:ret.metadata.total_count || list.length,
|
||||
|
||||
Reference in New Issue
Block a user