Hide the certificate info in administrator platform

Certificate information should only be displayed on the console platform

Closes-Bug: #1992274
Change-Id: Iebd5d16fb78ba1704492ae52cab025b3cfb04b24
This commit is contained in:
xusongfu 2022-10-09 16:59:16 +08:00
parent 965844d557
commit b927f6c5f5

View File

@ -48,7 +48,7 @@ export class BaseDetail extends Base {
get rightCards() {
const { protocol } = this.detailData || {};
if (protocol === 'TERMINATED_HTTPS') {
if (protocol === 'TERMINATED_HTTPS' && !this.isAdminPage) {
return [this.certificateInfo];
}
return [];