Commit bc24a59943ccd8579c428e2315477aa5441d8ed5

Authored by loveumiko
1 parent 4628e016

fix: 修改teambition上面添加流转时名称字数限制

... ... @@ -42,7 +42,7 @@ export const modeApiForm: FormSchema[] = [
42 42 required: true,
43 43 component: 'Input',
44 44 componentProps: {
45   - maxLength: 255,
  45 + maxLength: 32,
46 46 placeholder: '请输入名称',
47 47 },
48 48 },
... ...
... ... @@ -45,7 +45,7 @@ export const modelKafkaForm: FormSchema[] = [
45 45 required: true,
46 46 component: 'Input',
47 47 componentProps: {
48   - maxLength: 255,
  48 + maxLength: 32,
49 49 placeholder: '请输入名称',
50 50 },
51 51 },
... ...
... ... @@ -31,7 +31,7 @@ export const modeMqttForm: FormSchema[] = [
31 31 component: 'Input',
32 32 required: true,
33 33 componentProps: {
34   - maxLength: 255,
  34 + maxLength: 32,
35 35 placeholder: '请输入名称',
36 36 },
37 37 },
... ...
... ... @@ -34,7 +34,7 @@ export const modeRabbitMqForm: FormSchema[] = [
34 34 required: true,
35 35 component: 'Input',
36 36 componentProps: {
37   - maxLength: 255,
  37 + maxLength: 32,
38 38 placeholder: '请输入名称',
39 39 },
40 40 },
... ...