1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 23:48:47 +00:00

Group and shared module improve (#2739)

* update seafile-ui.css

* add repo detail for group

* add-detail for groups-view

* group-and-shared-module-improve

* when look detail, clicking navPath, or clicking other item will generator error
This commit is contained in:
杨顺强
2018-12-29 18:25:18 +08:00
committed by Daniel Pan
parent cfc6f2221f
commit 169a11615b
8 changed files with 138 additions and 38 deletions

View File

@@ -10,6 +10,7 @@ const propTypes = {
repoList: PropTypes.array.isRequired,
onItemUnshare: PropTypes.func.isRequired,
onItemDelete: PropTypes.func.isRequired,
onItemDetails: PropTypes.func,
};
class SharedRepoListView extends React.Component {
@@ -41,6 +42,7 @@ class SharedRepoListView extends React.Component {
onFreezedItem={this.onFreezedItem}
onItemUnshare={this.props.onItemUnshare}
onItemDelete={this.props.onItemDelete}
onItemDetails={this.props.onItemDetails}
/>
);
})}