优化API节点详情页

This commit is contained in:
GoEdgeLab
2021-07-06 15:31:09 +08:00
parent 6ac860c18e
commit b86453408c
3 changed files with 12 additions and 6 deletions

View File

@@ -24,7 +24,10 @@
<tr v-if="node.hasHTTPS">
<td>HTTPS证书</td>
<td>
<ssl-certs-view :v-certs="node.certs"></ssl-certs-view>
<div v-if="node.certs != null && node.certs.length > 0">
<ssl-certs-view :v-certs="node.certs"></ssl-certs-view>
</div>
<span v-else class="red">还没有设置证书可能会导致HTTPS相关服务不可用。</span>
</td>
</tr>
<tr>