From c684994fcec84b376a716725a72c8e856e59ecac Mon Sep 17 00:00:00 2001 From: Krista House Date: Tue, 30 Jul 2024 12:30:34 -0400 Subject: [PATCH] fix(webapp): fix for rdp form - set pre connection blob as not required (#950) --- .../preconnection-blob/pre-connection-blob-control.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/src/client/app/modules/web-client/form/form-controls/preconnection-blob/pre-connection-blob-control.component.ts b/webapp/src/client/app/modules/web-client/form/form-controls/preconnection-blob/pre-connection-blob-control.component.ts index e7b134f5b..6049e8756 100644 --- a/webapp/src/client/app/modules/web-client/form/form-controls/preconnection-blob/pre-connection-blob-control.component.ts +++ b/webapp/src/client/app/modules/web-client/form/form-controls/preconnection-blob/pre-connection-blob-control.component.ts @@ -19,6 +19,6 @@ export class PreConnectionBlobControlComponent extends BaseComponent implements } ngOnInit(): void { - this.formService.addControlToForm(this.parentForm, 'preConnectionBlob', this.inputFormData); + this.formService.addControlToForm(this.parentForm, 'preConnectionBlob', this.inputFormData, false); } }