diff --git a/src/main/FileViewComponent.tsx b/src/main/FileViewComponent.tsx index 9018adf..2ad2d99 100644 --- a/src/main/FileViewComponent.tsx +++ b/src/main/FileViewComponent.tsx @@ -23,22 +23,24 @@ export default class FileViewComponent extends React.Component { for (let i = 0; i < this.props.files.length; i++) { const file = this.props.files[i] - fileList.push(
  • - { - event.preventDefault() - open(file.path) - }} - > - {getFileIconHtml(getFilename(file.path))} + fileList.push( +
  • + { + event.preventDefault() + open(file.path) + }} + > + {getFileIconHtml(getFilename(file.path))} - {shortenFilename(getFilename(file.path), 38)} - + {shortenFilename(getFilename(file.path), 38)} + -
  • ) +