From 846523bac69fa3cf1f3219f048335045b0aec594 Mon Sep 17 00:00:00 2001 From: Krista House Date: Tue, 30 Jul 2024 09:08:07 -0400 Subject: [PATCH] fix(webapp): fix for rdp form - set pre connection blob as not required --- .../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); } }