Skip to content

Commit a550c90

Browse files
committed
fix: Prevent distorted properties
1 parent f22af58 commit a550c90

File tree

4 files changed

+48
-0
lines changed

4 files changed

+48
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
openapi: 3.0.0
2+
info:
3+
title: Repro
4+
paths:
5+
/items:
6+
get:
7+
responses:
8+
'200':
9+
description: Successful response
10+
content:
11+
application/json:
12+
schema:
13+
type: object
14+
properties:
15+
properties:
16+
type: object
17+
text:
18+
type: string
19+
example:
20+
properties:
21+
text: "test"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
verbose: true
2+
output: output.yaml
3+
#no-sort: true
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
openapi: 3.0.0
2+
info:
3+
title: Repro
4+
paths:
5+
/items:
6+
get:
7+
responses:
8+
'200':
9+
description: Successful response
10+
content:
11+
application/json:
12+
schema:
13+
type: object
14+
properties:
15+
properties:
16+
type: object
17+
text:
18+
type: string
19+
example:
20+
properties:
21+
text: test

utils/sorting.js

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ function propComparator(priorityArr) {
5252
* @returns {*}
5353
*/
5454
function prioritySort(jsonProp, sortPriority, options) {
55+
if (typeof jsonProp !== 'object' || jsonProp === null) {
56+
return jsonProp;
57+
}
5558
return sortObjectByKeyNameList(jsonProp, propComparator(sortPriority));
5659
}
5760

0 commit comments

Comments
 (0)