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 85a013f commit 2c8e46bCopy full SHA for 2c8e46b
src/dashboard/Dashboard.js
@@ -203,8 +203,8 @@ class Dashboard extends React.Component {
203
}
204
});
205
return Parse.Promise.when(appInfoPromises);
206
- }).then(function() {
207
- Array.prototype.slice.call(arguments).forEach(app => {
+ }).then(function(resolvedApps) {
+ resolvedApps.forEach(app => {
208
AppsManager.addApp(app);
209
210
this.setState({ configLoadingState: AsyncStatus.SUCCESS });
@@ -213,7 +213,7 @@ class Dashboard extends React.Component {
213
configLoadingError: error,
214
configLoadingState: AsyncStatus.FAILED
215
216
- })
+ });
217
218
219
render() {
0 commit comments