Fixed file upload and profile picture upload error display to work for serverside errors

Этот коммит содержится в:
hmhealey
2015-10-26 14:15:07 -04:00
родитель b46c01b290
Коммит ff6e91f51d
2 изменённых файлов: 9 добавлений и 3 удалений

Просмотреть файл

@@ -171,7 +171,7 @@ export default class UserSettingsGeneralTab extends React.Component {
}.bind(this),
function imageUploadFailure(err) {
var state = this.setupInitialState(this.props);
state.serverError = err;
state.serverError = err.message;
this.setState(state);
}.bind(this)
);