diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 19:33:21 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-04 19:33:21 +0200 |
| commit | 521b024439b202be03447188925869100904b807 (patch) | |
| tree | f64a5d37fc520c8b2ec563703877288142032916 /app/client/common | |
| parent | 7bb603e202710afe9f7cc4bea16a72014bc7404c (diff) | |
refactor state
Diffstat (limited to 'app/client/common')
| -rw-r--r-- | app/client/common/fileList.component.js | 1 |
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 => { |
