We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 984886a commit 54cff98Copy full SHA for 54cff98
package.json
@@ -61,7 +61,7 @@
61
"js-beautify": "~1.5.0",
62
"marked": "^0.3.5",
63
"node-sass": "^3.7.0",
64
- "parse": "1.6.14",
+ "parse": "1.9.1",
65
"prismjs": "~1.2.0",
66
"react": "^15.0.1",
67
"react-addons-test-utils": "^15.0.1",
src/dashboard/Dashboard.js
@@ -163,8 +163,8 @@ class Dashboard extends React.Component {
163
}
164
});
165
return Parse.Promise.when(appInfoPromises);
166
- }).then(function() {
167
- Array.prototype.slice.call(arguments).forEach(app => {
+ }).then(function(resolvedApps) {
+ resolvedApps.forEach(app => {
168
AppsManager.addApp(app);
169
170
this.setState({ configLoadingState: AsyncStatus.SUCCESS });
0 commit comments