1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-07 18:03:48 +00:00

[dirent details panel] fixup & improvement (#2844)

* [dirent details panel] fixup & improvement

* [my libs] details: click item to show details when details panel is open
This commit is contained in:
llj
2019-01-17 17:05:08 +08:00
committed by Daniel Pan
parent 4444a4120a
commit 1f016ff046
9 changed files with 54 additions and 7 deletions

View File

@@ -19,6 +19,7 @@ const propTypes = {
onDeleteRepo: PropTypes.func.isRequired,
onTransferRepo: PropTypes.func.isRequired,
onRepoDetails: PropTypes.func.isRequired,
onItemClick: PropTypes.func.isRequired
};
class Content extends Component {
@@ -138,6 +139,7 @@ class Content extends Component {
onRenameRepo={this.props.onRenameRepo}
onDeleteRepo={this.props.onDeleteRepo}
onRepoDetails={this.props.onRepoDetails}
onItemClick={this.props.onItemClick}
onTransfer={this.onTransfer}
showDeleteItemPopup={this.showDeleteItemPopup}
onHistorySetting={this.onHistorySetting}