diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-09-20 02:52:55 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-09-20 02:52:55 +0200 |
| commit | 3c9ccd38751501bbf5b9cd2c54dee370681fdb5b (patch) | |
| tree | 31464fe818770550bd71edca8b91aed1eb708240 /app/client/common/folderList.component.js | |
| parent | 19adbf48642085f39b9562ea6ad1e248a546373c (diff) | |
stub file viewer
Diffstat (limited to 'app/client/common/folderList.component.js')
| -rw-r--r-- | app/client/common/folderList.component.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/client/common/folderList.component.js b/app/client/common/folderList.component.js index a6c6ae5..91d0bff 100644 --- a/app/client/common/folderList.component.js +++ b/app/client/common/folderList.component.js @@ -12,7 +12,7 @@ export default function FolderList ({ db, path, emptyText, activity }) { if (! db) return null if (db.loading || !db.data) { return ( - <div class='col folderList'> + <div className='col folderList'> <Loading progress={db.progress} /> </div> ) @@ -23,7 +23,7 @@ export default function FolderList ({ db, path, emptyText, activity }) { } if (! folderList.length && emptyText) { return ( - <div class='col folderList'> + <div className='col folderList'> {emptyText} </div> ) @@ -41,7 +41,7 @@ export default function FolderList ({ db, path, emptyText, activity }) { }) return ( - <div class='col folderList'> + <div className='col folderList'> <Group title='Projects'> {folders} </Group> |
