Skip to content
This repository was archived by the owner on May 10, 2024. It is now read-only.

Commit 7f75206

Browse files
authored
Merge pull request #510 from mulesoft/se-fixes
SE fixes
2 parents 2c9f600 + 7fee4f3 commit 7f75206

11 files changed

+1170
-719
lines changed

app/scripts/api-designer-worker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ function RamlExpander() {
1919
if (expandedType) {
2020
for (var key in expandedType) {
2121
if (expandedType.hasOwnProperty(key)) {
22-
if (['example', 'examples'].includes(key) && valueHasExamples) {
22+
if ((key === 'example' || key === 'examples') && valueHasExamples) {
2323
continue;
2424
}
2525
value[key] = expandedType[key];

bower.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "api-designer",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/mulesoft/api-designer.git"
@@ -10,7 +10,7 @@
1010
"angular": "~1.3.17",
1111
"angular-bootstrap": ">=0.11.0 <0.14.0",
1212
"angular-ui-tree": "2.1.5",
13-
"api-console": "mulesoft/api-console#v3.0.25",
13+
"api-console": "mulesoft/api-console#v3.0.26",
1414
"es5-shim": "~2.3.0",
1515
"file-saver.js": "~1.20150304.1",
1616
"font-awesome": "~4.0.3",

dist/scripts/api-designer-parser.js

Lines changed: 903 additions & 580 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/scripts/api-designer-parser.min.js

Lines changed: 61 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)