[ADF-5294] - fixed problem on form rendering (#6405)

Co-authored-by: Vito Albano <vitoalbano@vitoalbano-mbp-0120.local>
This commit is contained in:
Vito
2020-12-01 23:58:32 +00:00
committed by GitHub
parent 9bbdee5de0
commit 7f31441946
2 changed files with 17 additions and 3 deletions

View File

@@ -99,7 +99,7 @@ export class FormModel {
this.className = json.className || '';
this.variables = json.variables || [];
this.processVariables = json.processVariables || [];
this.enableFixedSpace = enableFixedSpace || true;
this.enableFixedSpace = enableFixedSpace ? true : false;
const tabCache: FormWidgetModelCache<TabModel> = {};