diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2020-01-28 15:53:41 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2020-01-28 15:53:41 +0100 |
| commit | 1d167631fe5333d9a22a0d9a8bd7ba7d25582534 (patch) | |
| tree | 1445d627a60c93d78a5ad6907d9bc78421e39f96 /app/client | |
| parent | 5d415f9739b99c9b34c3465b6c40482b948602a7 (diff) | |
link gallery images
Diffstat (limited to 'app/client')
| -rw-r--r-- | app/client/common/fileList.component.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/client/common/fileList.component.js b/app/client/common/fileList.component.js index 1d4a3ca..cabeafb 100644 --- a/app/client/common/fileList.component.js +++ b/app/client/common/fileList.component.js @@ -36,7 +36,7 @@ export const FileList = props => { <div class='thumbnails'> {sortedFiles.map(pair => ( <div> - <img src={pair[1].url} /> + <a href={pair[1].url} target="_blank"><img src={pair[1].url} /></a> </div> ))} </div> |
