fix: 网元主机ssh私钥长度3000限制

This commit is contained in:
TsMask
2024-05-11 16:41:51 +08:00
parent 7560f21f11
commit c8a0d4c3f7
2 changed files with 6 additions and 4 deletions

View File

@@ -98,7 +98,7 @@ const checkStateFrom = Form.useForm(
{
required: true,
min: 1,
max: 128,
max: 3000,
message: t('views.ne.neHost.privateKeyPlease'),
},
],