summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/client/common/fileList.component.js2
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>