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

Merge pull request #3332 from haiwen/Add-container-contextmenu

Add container contextmenu
This commit is contained in:
Daniel Pan
2019-04-22 11:39:04 +08:00
committed by GitHub
5 changed files with 228 additions and 33 deletions

View File

@@ -28,6 +28,7 @@ const propTypes = {
updateDirent: PropTypes.func.isRequired,
showShareBtn: PropTypes.bool.isRequired,
showDirentDetail: PropTypes.func.isRequired,
onAddFolder: PropTypes.func.isRequired,
};
class DirGridView extends React.Component {
@@ -74,6 +75,7 @@ class DirGridView extends React.Component {
onGridItemClick={this.props.onGridItemClick}
isDirentDetailShow={this.props.isDirentDetailShow}
onItemRename={this.props.onItemRename}
onAddFolder={this.props.onAddFolder}
/>
</Fragment>
);