webhooks数量上限

This commit is contained in:
caishi 2023-06-28 10:30:13 +08:00
parent 2afcbe5424
commit 0bfd5c18a2
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ function Index(props) {
}
function addFunc() {
if(total >= 20){
if(total >= 50){
return props.showNotification("webhooks数量已到上限请删除暂不使用的webhooks以进行添加操作");
}
props.history.push(`/${owner}/${projectsId}/settings/webhooks/new`)