Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanHotsiy committed Mar 5, 2018
1 parent 6df8127 commit 8bd71de
Show file tree
Hide file tree
Showing 3 changed files with 603 additions and 476 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
"marked": "^0.3.12",
"mobx": "^3.3.0",
"mobx-react": "^4.3.3",
"openapi-sampler": "1.0.0-beta.8",
"openapi-sampler": "1.0.0-beta.9",
"perfect-scrollbar": "^1.3.0",
"prismjs": "^1.8.1",
"prop-types": "^15.6.0",
Expand All @@ -107,7 +107,6 @@
"@types/chai": "4.0.8"
},
"jest": {
"mapCoverage": true,
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
Expand Down
2 changes: 1 addition & 1 deletion src/services/OpenAPIParser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class OpenAPIParser {

if (subSchema.properties !== undefined) {
receiver.properties = receiver.properties || {};
for (let prop in subSchema.properties) {
for (const prop in subSchema.properties) {
if (!receiver.properties[prop]) {
receiver.properties[prop] = subSchema.properties[prop];
} else {
Expand Down
Loading

0 comments on commit 8bd71de

Please sign in to comment.