1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 15:09:14 +00:00

change file path max-height (#3814)

This commit is contained in:
Michael An
2019-07-15 14:42:18 +08:00
committed by Daniel Pan
parent 5f2382ff0d
commit 09abcfa5e0
3 changed files with 22 additions and 5 deletions

View File

@@ -43,10 +43,10 @@ class DirPath extends React.Component {
} else {
nodePath += '/' + item;
return (
<span key={index} >
<Fragment key={index} >
<span className="path-split">/</span>
<a className="path-link" data-path={nodePath} onClick={this.onPathClick}>{item}</a>
</span>
</Fragment>
);
}
});