Merge pull request 'webhook url密钥长度校验改成200' (#428) from durian/forgeplus-react:gitlink_server into gitlink_server

This commit is contained in:
xxq250 2022-08-01 14:53:58 +08:00
commit 5fbac9d61c
1 changed files with 2 additions and 2 deletions

View File

@ -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}>