Open olragon opened 6 years ago
Blank field display when I used nova-json-schema-field with schema Array of objects
nova-json-schema-field
public function fields() { return [ NovaJsonSchemaField::make('Options', $this->optionsSchema()) ->listClass('list-reset') ] } public function optionsSchema() { return [ 'type' => 'array', 'items' => [ 'type' => 'object', 'required' => ['name'], 'properties' => [ 'name' => [ 'type' => 'string' ] ] ] ]; }
Any update on this? Nice field btw.
Blank field display when I used
nova-json-schema-field
with schema Array of objects