Skip to content

Commit

Permalink
Merge 39e7c99 into da4da44
Browse files Browse the repository at this point in the history
  • Loading branch information
benjdelt authored Nov 20, 2019
2 parents da4da44 + 39e7c99 commit fc74841
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/FileInfo/FileInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,12 @@ export class FileInfo extends React.Component<IProps, IState> {
return (
<>
{allowDownload && meta.downloadUrl ? (
<a href={meta.downloadUrl} target="_blank" download={file.name}>
<a
href={meta.downloadUrl}
target="_blank"
download={file.name}
style={{ width: '300px' }}
>
<FileDetails file={file} glyph={glyph} size={size} />
</a>
) : (
Expand Down

0 comments on commit fc74841

Please sign in to comment.