diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-26 00:19:29 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-26 00:19:29 +0100 |
| commit | da6d38cd2865d5e9de32f2b922754979af366317 (patch) | |
| tree | 8623b426b5f65c44dd8138ca836690740e00f203 /app/client/modules/biggan/views/biggan.show.js | |
| parent | 72a85f6208a009395988ac2697fc09723c9798a0 (diff) | |
adding thumbnails to datasets
Diffstat (limited to 'app/client/modules/biggan/views/biggan.show.js')
| -rw-r--r-- | app/client/modules/biggan/views/biggan.show.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app/client/modules/biggan/views/biggan.show.js b/app/client/modules/biggan/views/biggan.show.js index 4d301e8..ea8de08 100644 --- a/app/client/modules/biggan/views/biggan.show.js +++ b/app/client/modules/biggan/views/biggan.show.js @@ -38,7 +38,6 @@ class BigGANShow extends Component { const { biggan, match, history, actions, tasks } = this.props const { folderLookup } = (biggan.data || {}) const folder = (folderLookup || {})[biggan.folder_id] || {} - return ( <div className='app biggan'> <div class='heading'> @@ -71,6 +70,9 @@ class BigGANShow extends Component { data={biggan.data} folder={folder} history={history} + fields={'input output'} + inputFields={'thumbnail name date size deleteLink'} + outputFields={'thumbnail name date size deleteLink'} onPickFile={(file, e) => { e.preventDefault() e.stopPropagation() |
