feature (batch): create selections of files/folder to batch delete and move actions

This commit is contained in:
=
2019-04-24 15:47:40 +10:00
parent 191ddbd11f
commit 65a61588a8
11 changed files with 210 additions and 74 deletions

View File

@ -56,7 +56,7 @@ export class BreadCrumb extends React.Component {
{
this.state.path.map((path, index) => {
return (
<Path key={"breadcrumb_"+index} path={path} isLast={this.state.path.length === index + 1} needSaving={this.props.needSaving} />
<Path key={"breadcrumb_"+index} currentSelection={this.props.currentSelection} path={path} isLast={this.state.path.length === index + 1} needSaving={this.props.needSaving} />
);
})
}