summaryrefslogtreecommitdiffstats
path: root/webapp/components/file_info_preview.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-03-24 12:45:12 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2016-03-24 12:45:12 -0400
commitc64b12e27a4218f27bfdfd935fd64ea43f0e6e26 (patch)
tree625baa2a878d1ad9992085649a998fd5f9088094 /webapp/components/file_info_preview.jsx
parent998ce12133358eab587702e258edefbd437f86ba (diff)
parentd6a6668a39db2f78d59919686c5d7b901888da36 (diff)
downloadchat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.tar.gz
chat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.tar.bz2
chat-c64b12e27a4218f27bfdfd935fd64ea43f0e6e26.zip
Merge pull request #2529 from mattermost/plt-2383
PLT-2383 Fixed system console login page flash.
Diffstat (limited to 'webapp/components/file_info_preview.jsx')
-rw-r--r--webapp/components/file_info_preview.jsx7
1 files changed, 4 insertions, 3 deletions
diff --git a/webapp/components/file_info_preview.jsx b/webapp/components/file_info_preview.jsx
index a0ec282c4..d5dcd75eb 100644
--- a/webapp/components/file_info_preview.jsx
+++ b/webapp/components/file_info_preview.jsx
@@ -5,6 +5,7 @@ import * as Utils from 'utils/utils.jsx';
import {defineMessages} from 'react-intl';
import React from 'react';
+import {Link} from 'react-router';
const holders = defineMessages({
type: {
@@ -33,14 +34,14 @@ export default function FileInfoPreview({filename, fileUrl, fileInfo, formatMess
return (
<div className='file-details__container'>
- <a
+ <Link
className={'file-details__preview'}
- href={fileUrl}
+ to={fileUrl}
target='_blank'
>
<span className='file-details__preview-helper'/>
<img src={Utils.getPreviewImagePath(filename)}/>
- </a>
+ </Link>
<div className='file-details'>
<div className='file-details__name'>{name}</div>
<div className='file-details__info'>{infoString}</div>