Commit cdc5aa94de8cca8de4b59b82f7b4baf6b3581ed0
Merge branch 'fix/DEFECT-1410' into 'main_dev'
fix: 修改teambition上面添加流转时名称字数限制 See merge request yunteng/thingskit-front!736
Showing
4 changed files
with
4 additions
and
4 deletions
| @@ -42,7 +42,7 @@ export const modeApiForm: FormSchema[] = [ | @@ -42,7 +42,7 @@ export const modeApiForm: FormSchema[] = [ | ||
| 42 | required: true, | 42 | required: true, |
| 43 | component: 'Input', | 43 | component: 'Input', |
| 44 | componentProps: { | 44 | componentProps: { |
| 45 | - maxLength: 255, | 45 | + maxLength: 32, |
| 46 | placeholder: '请输入名称', | 46 | placeholder: '请输入名称', |
| 47 | }, | 47 | }, |
| 48 | }, | 48 | }, |
| @@ -45,7 +45,7 @@ export const modelKafkaForm: FormSchema[] = [ | @@ -45,7 +45,7 @@ export const modelKafkaForm: FormSchema[] = [ | ||
| 45 | required: true, | 45 | required: true, |
| 46 | component: 'Input', | 46 | component: 'Input', |
| 47 | componentProps: { | 47 | componentProps: { |
| 48 | - maxLength: 255, | 48 | + maxLength: 32, |
| 49 | placeholder: '请输入名称', | 49 | placeholder: '请输入名称', |
| 50 | }, | 50 | }, |
| 51 | }, | 51 | }, |
| @@ -31,7 +31,7 @@ export const modeMqttForm: FormSchema[] = [ | @@ -31,7 +31,7 @@ export const modeMqttForm: FormSchema[] = [ | ||
| 31 | component: 'Input', | 31 | component: 'Input', |
| 32 | required: true, | 32 | required: true, |
| 33 | componentProps: { | 33 | componentProps: { |
| 34 | - maxLength: 255, | 34 | + maxLength: 32, |
| 35 | placeholder: '请输入名称', | 35 | placeholder: '请输入名称', |
| 36 | }, | 36 | }, |
| 37 | }, | 37 | }, |
| @@ -35,7 +35,7 @@ export const modeRabbitMqForm: FormSchema[] = [ | @@ -35,7 +35,7 @@ export const modeRabbitMqForm: FormSchema[] = [ | ||
| 35 | required: true, | 35 | required: true, |
| 36 | component: 'Input', | 36 | component: 'Input', |
| 37 | componentProps: { | 37 | componentProps: { |
| 38 | - maxLength: 255, | 38 | + maxLength: 32, |
| 39 | placeholder: '请输入名称', | 39 | placeholder: '请输入名称', |
| 40 | }, | 40 | }, |
| 41 | }, | 41 | }, |