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 удалений

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

@@ -15,7 +15,7 @@ module.exports = React.createClass({
// This looks redundant, but must be done this way due to
// setState being an asynchronous call
var numFiles = 0;
for(var i = 0; i < files.length && i < Constants.MAX_UPLOAD_FILES; i++) {
for(var i = 0; i < files.length; i++) {
if (files[i].size <= Constants.MAX_FILE_SIZE) {
numFiles++;
}