Display thumbnails for files without file extensions

Этот коммит содержится в:
hmhealey
2015-07-27 12:36:14 -04:00
родитель d8e9b7c8e4
Коммит 1842868410
2 изменённых файлов: 7 добавлений и 4 удалений

Просмотреть файл

@@ -126,7 +126,7 @@ module.exports = React.createClass({
} else if (i < Constants.MAX_DISPLAY_FILES) {
postFiles.push(
<div className="post-image__column custom-file" key={fileInfo.name+i}>
<a href={fileInfo.path+"."+fileInfo.ext} download={fileInfo.name+"."+fileInfo.ext}>
<a href={fileInfo.path + (fileInfo.ext ? "." + fileInfo.ext : "")} download={fileInfo.name + (fileInfo.ext ? "." + fileInfo.ext : "")}>
<div className={"file-icon "+utils.getIconClassName(type)}/>
</a>
</div>