forked from Gitlink/forgeplus-react
Merge pull request 'webhook url密钥长度校验改成200' (#428) from durian/forgeplus-react:gitlink_server into gitlink_server
This commit is contained in:
commit
5fbac9d61c
|
|
@ -199,14 +199,14 @@ function New({ form , match , showNotification , history }) {
|
|||
}
|
||||
]
|
||||
})(
|
||||
<Input placeholder="请输入目标URL" maxLength="100" size="large" autocomplete='off'/>
|
||||
<Input placeholder="请输入目标URL" maxLength="200" size="large" autocomplete='off'/>
|
||||
)}
|
||||
</Form.Item>
|
||||
<Form.Item label="Webhook密钥" colon={false}>
|
||||
{getFieldDecorator("secret",{
|
||||
rules:[]
|
||||
})(
|
||||
<Input.Password placeholder="请输入Webhook密钥" autocomplete='new-password' size="large" maxLength={"50"}/>
|
||||
<Input.Password placeholder="请输入Webhook密钥" autocomplete='new-password' size="large" maxLength={"200"}/>
|
||||
)}
|
||||
</Form.Item>
|
||||
<Form.Item label="Http请求方法" colon={false}>
|
||||
|
|
|
|||
Loading…
Reference in New Issue