Ben Rebak

Results 6 comments of Ben Rebak

I can avoid this by changing `[schema]="null"` to `[schema]="mySchema"`, adding `*ngIf="mySchema != null"` to the `` component. But if I do this, then the styling from Bootstrap isn't applied until...

This can be reliably reproduced on https://hamidihamza.com/ajsf/ by setting framework to Bootstrap 4, and setting Input JSON Schema and Form Layout to: ``` { "schema": { } } ```

Workaround is that the schema must be defined as: ``` mySchema = { type: 'object', properties: {} } ```

I'm also running into this issue. Any advice @aaubry ?