update components

This commit is contained in:
Luke Pulverenti 2016-10-02 02:13:04 -04:00
parent af2e209ce4
commit d4f9f432a4
19 changed files with 130 additions and 113 deletions

View file

@ -1,4 +1,5 @@
define(['localassetmanager'], function (localAssetManager) {
'use strict';
return function (connectionManager) {
@ -43,9 +44,9 @@
return uploadHistory.FilesUploaded.filter(function (u) {
return getUploadId(file) == u.Id;
return getUploadId(file) === u.Id;
}).length == 0;
}).length === 0;
});
}