Fixed issue with error message for uploading more than 5 files not appearing on OSX

Этот коммит содержится в:
Reed Garmsen
2015-07-23 10:01:19 -07:00
родитель dc79707787
Коммит 952e7a93f9
3 изменённых файлов: 3 добавлений и 3 удалений

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

@@ -40,7 +40,7 @@ module.exports = React.createClass({
post.parent_id = this.props.parentId;
post.filenames = this.state.previews;
this.setState({ submitting: true });
this.setState({ submitting: true, limit_error: null });
client.createPost(post, ChannelStore.getCurrent(),
function(data) {