Skip to content

Commit 54cff98

Browse files
jacob-meachamflovilmart
authored andcommitted
Update parse SDK to 1.9.1. (#620)
1 parent 984886a commit 54cff98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"js-beautify": "~1.5.0",
6262
"marked": "^0.3.5",
6363
"node-sass": "^3.7.0",
64-
"parse": "1.6.14",
64+
"parse": "1.9.1",
6565
"prismjs": "~1.2.0",
6666
"react": "^15.0.1",
6767
"react-addons-test-utils": "^15.0.1",

src/dashboard/Dashboard.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,8 +163,8 @@ class Dashboard extends React.Component {
163163
}
164164
});
165165
return Parse.Promise.when(appInfoPromises);
166-
}).then(function() {
167-
Array.prototype.slice.call(arguments).forEach(app => {
166+
}).then(function(resolvedApps) {
167+
resolvedApps.forEach(app => {
168168
AppsManager.addApp(app);
169169
});
170170
this.setState({ configLoadingState: AsyncStatus.SUCCESS });

0 commit comments

Comments
 (0)