1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-04 16:31:13 +00:00

rename onItemShared to onItemShare

This commit is contained in:
shanshuirenjia
2018-12-10 18:37:59 +08:00
parent 2728bde3ad
commit 9a043d8c41
4 changed files with 21 additions and 10 deletions

View File

@@ -7,7 +7,7 @@ const propTypes = {
currentGroup: PropTypes.object,
repoList: PropTypes.array.isRequired,
isShowTableThread: PropTypes.bool,
onItemUnshared: PropTypes.func.isRequired,
onItemUnshare: PropTypes.func.isRequired,
};
class SharedRepoListView extends React.Component {
@@ -36,7 +36,7 @@ class SharedRepoListView extends React.Component {
currentGroup={this.props.currentGroup}
isItemFreezed={this.state.isItemFreezed}
onFreezedItem={this.onFreezedItem}
onItemUnshared={this.props.onItemUnshared}
onItemUnshare={this.props.onItemUnshare}
/>
);
})}