mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-04 16:31:13 +00:00
tooltip (#3024)
This commit is contained in:
@@ -143,7 +143,9 @@ class TreeNodeView extends React.Component {
|
||||
}
|
||||
return (
|
||||
<div className="tree-node">
|
||||
<div type={type} onMouseEnter={this.onMouseEnter} onMouseLeave={this.onMouseLeave} className={`tree-node-inner text-nowrap ${hlClass} ${node.path === '/'? 'hide': ''}`}>
|
||||
<div type={type} title={node.object.name}
|
||||
onMouseEnter={this.onMouseEnter} onMouseLeave={this.onMouseLeave}
|
||||
className={`tree-node-inner text-nowrap ${hlClass} ${node.path === '/'? 'hide': ''}`}>
|
||||
<div className="tree-node-text" draggable="true" onDragStart={this.onNodeDragStart} onClick={this.onNodeClick}>{node.object.name}</div>
|
||||
<div className="left-icon">
|
||||
{type === 'dir' && (!node.isLoaded || (node.isLoaded && node.hasChildren())) && (
|
||||
|
Reference in New Issue
Block a user