Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
bc24a59943ccd8579c428e2315477aa5441d8ed5
Authored by
loveumiko
2023-07-19 16:52:06 +0800
1 parent
4628e016
fix: 修改teambition上面添加流转时名称字数限制
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
src/views/rule/dataFlow/components/dataflowmethod/components/api/config/index.ts
src/views/rule/dataFlow/components/dataflowmethod/components/kafka/config/index.ts
src/views/rule/dataFlow/components/dataflowmethod/components/mqtt/config/index.ts
src/views/rule/dataFlow/components/dataflowmethod/components/rabbitmq/config/index.ts
src/views/rule/dataFlow/components/dataflowmethod/components/api/config/index.ts
View file @
bc24a59
...
...
@@ -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
},
...
...
src/views/rule/dataFlow/components/dataflowmethod/components/kafka/config/index.ts
View file @
bc24a59
...
...
@@ -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
},
...
...
src/views/rule/dataFlow/components/dataflowmethod/components/mqtt/config/index.ts
View file @
bc24a59
...
...
@@ -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
},
...
...
src/views/rule/dataFlow/components/dataflowmethod/components/rabbitmq/config/index.ts
View file @
bc24a59
...
...
@@ -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
},
...
...