diff --git a/scm-ui/src/repos/sources/components/FileTreeLeaf.js b/scm-ui/src/repos/sources/components/FileTreeLeaf.js index 36bd734d11..f7f9feb52e 100644 --- a/scm-ui/src/repos/sources/components/FileTreeLeaf.js +++ b/scm-ui/src/repos/sources/components/FileTreeLeaf.js @@ -11,12 +11,13 @@ const styles = { iconColumn: { width: "16px" }, - wordBreakTable: { + wordBreakColumn: { WebkitHyphens: "auto", MozHyphens: "auto", MsHyphens: "auto", hyphens: "auto", - wordBreak: "auto" + wordBreak: "break-all", + minWidth: "10em" } }; @@ -78,12 +79,12 @@ class FileTreeLeaf extends React.Component { return ( {this.createFileIcon(file)} - {this.createFileName(file)} + {this.createFileName(file)} {fileSize} - {file.description} + {file.description} ); }