Add priority meter to files

This commit is contained in:
John Furrow
2016-02-10 23:41:00 -08:00
parent 778e5a3b41
commit 0fd6fd7d11
17 changed files with 497 additions and 164 deletions

View File

@@ -24,7 +24,8 @@ export default class DirectoryTreeNode extends React.Component {
if (this.state.expanded) {
return (
<div className="directory-tree__node directory-tree__node--group">
<DirectoryTree tree={this.props.subTree} depth={this.props.depth} />
<DirectoryTree tree={this.props.subTree} depth={this.props.depth}
hash={this.props.hash} />
</div>
);
} else {