File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const (
17
17
ParameterFormTypeCheckbox ParameterFormType = "checkbox"
18
18
ParameterFormTypeSwitch ParameterFormType = "switch"
19
19
ParameterFormTypeMultiSelect ParameterFormType = "multi-select"
20
- ParameterFormTypeTagInput ParameterFormType = "tag-input "
20
+ ParameterFormTypeTagSelect ParameterFormType = "tag-select "
21
21
ParameterFormTypeTextArea ParameterFormType = "textarea"
22
22
ParameterFormTypeError ParameterFormType = "error"
23
23
)
@@ -32,7 +32,7 @@ func ParameterFormTypes() []ParameterFormType {
32
32
ParameterFormTypeCheckbox ,
33
33
ParameterFormTypeSwitch ,
34
34
ParameterFormTypeMultiSelect ,
35
- ParameterFormTypeTagInput ,
35
+ ParameterFormTypeTagSelect ,
36
36
ParameterFormTypeTextArea ,
37
37
ParameterFormTypeError ,
38
38
}
@@ -69,7 +69,7 @@ var formTypeTruthTable = map[string]map[bool][]ParameterFormType{
69
69
},
70
70
"list(string)" : {
71
71
true : {ParameterFormTypeRadio , ParameterFormTypeMultiSelect },
72
- false : {ParameterFormTypeTagInput },
72
+ false : {ParameterFormTypeTagSelect },
73
73
},
74
74
}
75
75
You can’t perform that action at this time.
0 commit comments