cipchk / nz-schema-form

ng-zorro-antd form generation based on JSON-Schema
MIT License
40 stars 14 forks source link

设置字段为“hidden”仍然占据了显示位置 #36

Closed limingyao-xx closed 6 years ago

limingyao-xx commented 6 years ago

1

cipchk commented 6 years ago

请提供可重现的 Schema,并在 validator 得以重现。

limingyao-xx commented 6 years ago
{
    "span_label_fixed": 100,
    "span": 8,
    "properties": {
        "is_file": {"type": "string", "widget": "hidden"}
    }
}

2

cipchk commented 6 years ago
{
    "span_label_fixed": 100,
    "span": 8,
    "properties": {
        "is_file": {"type": "string", "widget": { "type": "hidden" } }
    }
}
limingyao-xx commented 6 years ago

此处文档可更新下

1