Commit cdc5aa94de8cca8de4b59b82f7b4baf6b3581ed0

Authored by xp.Huang
2 parents 55ae664c bc24a599

Merge branch 'fix/DEFECT-1410' into 'main_dev'

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

See merge request yunteng/thingskit-front!736
... ... @@ -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 },
... ...
... ... @@ -35,7 +35,7 @@ export const modeRabbitMqForm: FormSchema[] = [
35 35 required: true,
36 36 component: 'Input',
37 37 componentProps: {
38   - maxLength: 255,
  38 + maxLength: 32,
39 39 placeholder: '请输入名称',
40 40 },
41 41 },
... ...