From ac3607a350a6c204dadc57556d2c599874432191 Mon Sep 17 00:00:00 2001 From: Jan-Robin Aumann Date: Mon, 6 Nov 2023 08:16:33 +0100 Subject: [PATCH] use correct attribute --- .../edit-endpoint-step/edit-endpoint-step.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/packages/core/src/features/endpoints/edit-endpoint/edit-endpoint-step/edit-endpoint-step.component.ts b/src/frontend/packages/core/src/features/endpoints/edit-endpoint/edit-endpoint-step/edit-endpoint-step.component.ts index d82050b8a9..e05303e29a 100644 --- a/src/frontend/packages/core/src/features/endpoints/edit-endpoint/edit-endpoint-step/edit-endpoint-step.component.ts +++ b/src/frontend/packages/core/src/features/endpoints/edit-endpoint/edit-endpoint-step/edit-endpoint-step.component.ts @@ -93,7 +93,7 @@ export class EditEndpointStepComponent implements OnDestroy, IStepperStep { ).subscribe(endpoint => { this.setAdvancedFields(endpoint); this.lastSkipSSLValue = endpoint.skip_ssl_validation; - this.showCACertField = !!endpoint.ca_cert; + this.showCACertField = !!endpoint.caCert; this.updateSSLFieldCheckbox(); this.editEndpoint.setValue({ name: endpoint.name,