openapi-explorer 2.2.690 → 2.2.693
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.
@@ -42,7 +42,7 @@ function generateFormRows(data, options, dataType = 'object', key = '', descript
|
|
42
42
|
|
43
43
|
// For Primitive Data types
|
44
44
|
const parsedData = JSON.parse(data);
|
45
|
-
return generatePrimitiveRow.call(this, parsedData, {
|
45
|
+
return Array.from(generatePrimitiveRow.call(this, parsedData, {
|
46
46
|
key,
|
47
47
|
keyLabel,
|
48
48
|
keyDescr,
|
@@ -50,7 +50,7 @@ function generateFormRows(data, options, dataType = 'object', key = '', descript
|
|
50
50
|
dataType,
|
51
51
|
isRequired,
|
52
52
|
options
|
53
|
-
});
|
53
|
+
}));
|
54
54
|
}
|
55
55
|
function generatePrimitiveRow(rowData, parentRecursionOptions) {
|
56
56
|
var _this$duplicatedRowsB;
|
@@ -47,7 +47,7 @@ function generateFormRows(data, options, dataType = 'object', key = '', descript
|
|
47
47
|
|
48
48
|
// For Primitive Data types
|
49
49
|
const parsedData = JSON.parse(data);
|
50
|
-
return generatePrimitiveRow.call(this, parsedData, {
|
50
|
+
return Array.from(generatePrimitiveRow.call(this, parsedData, {
|
51
51
|
key,
|
52
52
|
keyLabel,
|
53
53
|
keyDescr,
|
@@ -55,7 +55,7 @@ function generateFormRows(data, options, dataType = 'object', key = '', descript
|
|
55
55
|
dataType,
|
56
56
|
isRequired,
|
57
57
|
options
|
58
|
-
});
|
58
|
+
}));
|
59
59
|
}
|
60
60
|
function generatePrimitiveRow(rowData, parentRecursionOptions) {
|
61
61
|
var _this$duplicatedRowsB;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "openapi-explorer",
|
3
|
-
"version": "2.2.
|
3
|
+
"version": "2.2.693",
|
4
4
|
"description": "OpenAPI Explorer - API viewer with dynamically generated components, documentation, and interaction console",
|
5
5
|
"author": "Authress Developers <developers@authress.io>",
|
6
6
|
"type": "module",
|