1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 07:27:04 +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') { if (this.props.libraryType && this.props.libraryType === 'public') {
let isRepoOwner = this.props.repo.owner_email === username; let isRepoOwner = this.props.repo.owner_email === username;
if (isSystemStaff || isRepoOwner) { if (isSystemStaff || isRepoOwner) {
operations.push('unshare'); operations.push('Unshare');
} }
} else { } else {
// scene one: (share, delete, itemToggle and other operations); // scene one: (Share, Delete, itemToggle and other operations);
// scene two: (share, unshare), (share), (unshare) // scene two: (Share, Unshare), (Share), (Unshare)
operations = this.generatorOperations(); operations = this.generatorOperations();
} }
const shareOperation = <a href="#" className="op-icon sf2-icon-share" title={gettext('Share')} onClick={this.onItemShare}></a>; 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> </Fragment>
); );
} }
if (operations.length == 1 && operations[0] === 'share') { if (operations.length == 1 && operations[0] === 'Share') {
return shareOperation; return shareOperation;
} }
if (operations.length == 1 && operations[0] === 'unshare') { if (operations.length == 1 && operations[0] === 'Unshare') {
return unshareOperation; return unshareOperation;
} }
} }