summaryrefslogtreecommitdiff
path: root/app/client/common/fileList.component.js
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-04 19:33:21 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-04 19:33:21 +0200
commit521b024439b202be03447188925869100904b807 (patch)
treef64a5d37fc520c8b2ec563703877288142032916 /app/client/common/fileList.component.js
parent7bb603e202710afe9f7cc4bea16a72014bc7404c (diff)
refactor state
Diffstat (limited to 'app/client/common/fileList.component.js')
-rw-r--r--app/client/common/fileList.component.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/client/common/fileList.component.js b/app/client/common/fileList.component.js
index d060e01..0e6c402 100644
--- a/app/client/common/fileList.component.js
+++ b/app/client/common/fileList.component.js
@@ -19,6 +19,7 @@ export const FileList = props => {
} = props
const { mapFn, sortFn } = util.sort.orderByFn(orderBy)
const fileList = (files || [])
+ // .filter(f => !!f)
.map(mapFn)
.sort(sortFn)
.map(pair => {