1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 23:20:51 +00:00

repair code error

This commit is contained in:
shanshuirenjia
2019-06-27 12:43:25 +08:00
parent b5e46aa903
commit 1e8e394328

View File

@@ -277,11 +277,11 @@ class SharedRepoListItem extends React.Component {
if (this.props.libraryType && this.props.libraryType === 'public') {
let isRepoOwner = this.props.repo.owner_email === username;
if (isSystemStaff || isRepoOwner) {
operations.push('unshare');
operations.push('Unshare');
}
} else {
// scene one: (share, delete, itemToggle and other operations);
// scene two: (share, unshare), (share), (unshare)
// scene one: (Share, Delete, itemToggle and other operations);
// scene two: (Share, Unshare), (Share), (Unshare)
operations = this.generatorOperations();
}
const shareOperation = <a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} onClick={this.onItemShare}></a>;
@@ -319,11 +319,11 @@ class SharedRepoListItem extends React.Component {
</Fragment>
);
}
if (operations.length == 1 && operations[0] === 'share') {
if (operations.length == 1 && operations[0] === 'Share') {
return shareOperation;
}
if (operations.length == 1 && operations[0] === 'unshare') {
if (operations.length == 1 && operations[0] === 'Unshare') {
return unshareOperation;
}
}