Skip to content

Commit

Permalink
Fixed a bug where the Plugin Store was not able to load developer det…
Browse files Browse the repository at this point in the history
…ails.

Fixed #4241
  • Loading branch information
benjamindavid committed May 10, 2019
1 parent ab2103e commit bdfd602
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG-v3.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- Fixed a bug Craft wouldn’t allow users to edit their own photos if they didn’t have upload/remove asset permissions.
- Fixed a bug where Craft wasn’t removing newline characters when pasting text into some single-line Table column types.
- Fixed a bug where project config syncing could have inconsistent results on load-balanced environments. ([](https://github.com/craftcms/cms/issues/4136))
- Fixed a bug where the Plugin Store was not able to load developer details. ([#4241](https://github.com/craftcms/cms/issues/4241))

## 3.1.26 - 2019-05-08

Expand Down
2 changes: 1 addition & 1 deletion src/web/assets/pluginstore/dist/js/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/pluginstore/dist/js/app.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ const actions = {
return new Promise((resolve, reject) => {
api.getDeveloper(developerId)
.then(response => {
commit('updateDeveloper', {developer: response})
commit('updateDeveloper', { developer: response.data })
resolve(response)
})
.then(error => {
.catch(error => {
reject(error.response)
})
})
Expand Down

0 comments on commit bdfd602

Please sign in to comment.