ronds-metadata 1.0.30 → 1.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -123,7 +123,11 @@ var MetadataEdit = function MetadataEdit(props) {
123
123
  return;
124
124
  }
125
125
 
126
- var _properties = metaSchemaRef.current.properties || form.getFieldValue('properties');
126
+ var _properties_from = form.getFieldValue('properties') || [];
127
+
128
+ var _properties_ref = metaSchemaRef.current.properties || [];
129
+
130
+ var _properties = _properties_from.length <= _properties_ref.length ? _properties_ref : _properties_from;
127
131
 
128
132
  var _curFields = _properties[index];
129
133
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "public": true,
3
3
  "name": "ronds-metadata",
4
- "version": "1.0.30",
4
+ "version": "1.0.31",
5
5
  "scripts": {
6
6
  "start": "dumi dev",
7
7
  "docs:build": "dumi build",