1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-03 16:10:26 +00:00

add dividers (#3146)

This commit is contained in:
Michael An
2019-03-20 11:13:32 +08:00
committed by Daniel Pan
parent b9aca2aba9
commit 0209a6ac73
3 changed files with 5 additions and 6 deletions

View File

@@ -27,7 +27,7 @@ const propTypes = {
isRepoOwner: PropTypes.bool.isRequired,
enableDirPrivateShare: PropTypes.bool.isRequired,
currentRepoInfo: PropTypes.object.isRequired,
onFileTagChanged: PropTypes.func.isRequired,
onFilesTagChanged: PropTypes.func.isRequired,
unSelectDirent: PropTypes.func.isRequired,
updateDirent: PropTypes.func.isRequired,
showDirentDetail: PropTypes.func.isRequired,
@@ -266,7 +266,7 @@ class MutipleDirOperationToolbar extends React.Component {
for (let i = 0; i < length; i++) {
const dirent = this.props.selectedDirentList[i];
const direntPath = this.getDirentPath(dirent);
this.props.onFileTagChanged(dirent, direntPath);
this.props.onFilesTagChanged(dirent, direntPath);
}
}