设置项目标识暂时隐藏
This commit is contained in:
parent
c037712b3e
commit
b578383e8d
|
@ -1949,9 +1949,7 @@ a.decoration {
|
||||||
}
|
}
|
||||||
|
|
||||||
.mr20 {
|
.mr20 {
|
||||||
margin-right: 10px;
|
margin-right: 20px;
|
||||||
margin-left: 10px;
|
|
||||||
float: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mr25 {
|
.mr25 {
|
||||||
|
@ -1959,7 +1957,7 @@ a.decoration {
|
||||||
}
|
}
|
||||||
|
|
||||||
.mr30 {
|
.mr30 {
|
||||||
margin-right: 10px;
|
margin-right: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mr35 {
|
.mr35 {
|
||||||
|
|
|
@ -195,7 +195,7 @@
|
||||||
width: 40px;
|
width: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
&:nth-child(5){
|
&:nth-child(5n){
|
||||||
margin-right: 0px;
|
margin-right: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -153,15 +153,20 @@ class Setting extends Component {
|
||||||
name: values.project_name,
|
name: values.project_name,
|
||||||
description: values.project_description,
|
description: values.project_description,
|
||||||
private: private_check,
|
private: private_check,
|
||||||
|
identifier:values.project_identifier,
|
||||||
...values,
|
...values,
|
||||||
}).then((result) => {
|
}).then((result) => {
|
||||||
if (result) {
|
if (result) {
|
||||||
this.props.showNotification(`仓库信息修改成功!`);
|
|
||||||
const { getDetail } = this.props;
|
|
||||||
getDetail && getDetail();
|
|
||||||
this.setState({
|
this.setState({
|
||||||
loading:false
|
loading:false
|
||||||
})
|
})
|
||||||
|
this.props.showNotification(`仓库信息修改成功!`);
|
||||||
|
// if(values.project_identifier !== projectsId){
|
||||||
|
// this.props.history.push(`/${owner}/${values.project_identifier}/settings`);
|
||||||
|
// }else{
|
||||||
|
// }
|
||||||
|
const { getDetail } = this.props;
|
||||||
|
getDetail && getDetail();
|
||||||
}
|
}
|
||||||
}).catch((error) => {
|
}).catch((error) => {
|
||||||
console.log(error);
|
console.log(error);
|
||||||
|
@ -283,6 +288,18 @@ class Setting extends Component {
|
||||||
)}
|
)}
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
</div>
|
</div>
|
||||||
|
{/* <Form.Item label="项目标识 (项目url标识部分,更改项目标识将导致原仓库地址失效)">
|
||||||
|
{getFieldDecorator("project_identifier", {
|
||||||
|
rules: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: "请输入项目标识",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
})(
|
||||||
|
<Input placeholder="项目标识请使用与项目相关的英文关键字" maxLength="100" />
|
||||||
|
)}
|
||||||
|
</Form.Item> */}
|
||||||
<Form.Item label="项目简介">
|
<Form.Item label="项目简介">
|
||||||
{getFieldDecorator("project_description", {
|
{getFieldDecorator("project_description", {
|
||||||
rules: [],
|
rules: [],
|
||||||
|
|
Loading…
Reference in New Issue