易修批量修改:非项目协作者不能操作

This commit is contained in:
caishi 2021-07-01 13:56:09 +08:00
parent ff60cf11e1
commit 84bbf5fd52
2 changed files with 3 additions and 3 deletions

View File

@ -573,7 +573,7 @@ class order extends Component {
<div className="f-wrap-between screenWrap">
<div className="df">
{
current_user && current_user.login ?
((current_user && current_user.login) && (data && data.user_admin_or_member)) ?
<Checkbox value="0" style={{ lineHeight: "50px", marginRight: "15px" }} checked={all} onChange={this.changeAll}></Checkbox>
: ""
}
@ -818,7 +818,7 @@ class order extends Component {
<OrderItem
key={key}
item={item}
checkbox={current_user ? <Checkbox value={item.id} key={item.id} style={{ margin: '4px 15px 0px 0px' }}></Checkbox> : ""}
checkbox={current_user &&(data && data.user_admin_or_member) ? <Checkbox value={item.id} key={item.id} style={{ margin: '4px 15px 0px 0px' }}></Checkbox> : ""}
search_count={search_count}
page={select_params.page}
limit={select_params.limit}

View File

@ -274,7 +274,7 @@ class Setting extends Component {
>
<span className="color-grey-9">将仓库设为私有</span>
<span className="color-grey-6">
{ forked_from_project_id ?`修改仓库的可见性,将会影响到该仓库下所有Fork仓库的可见性`:`Fork仓库的可见性实时同步自源仓库,不支持直接修改`}
{ forked_from_project_id ?`Fork仓库的可见性实时同步自源仓库,不支持直接修改`:`修改仓库的可见性,将会影响到该仓库下所有Fork仓库的可见性`}
</span>
</Checkbox>
)}