Swap input_types order in TextInput and TextOutput
This commit is contained in:
parent
9a80d0306d
commit
b2962ca1da
2 changed files with 2 additions and 2 deletions
|
|
@ -13,7 +13,7 @@ class TextInput(TextComponent):
|
|||
return {
|
||||
"input_value": {
|
||||
"display_name": "Value",
|
||||
"input_types": ["Text", "Record"],
|
||||
"input_types": ["Record", "Text"],
|
||||
"info": "Text or Record to be passed as input.",
|
||||
},
|
||||
"record_template": {
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ class TextOutput(TextComponent):
|
|||
return {
|
||||
"input_value": {
|
||||
"display_name": "Value",
|
||||
"input_types": ["Record"],
|
||||
"input_types": ["Record", "Text"],
|
||||
"info": "Text or Record to be passed as output.",
|
||||
},
|
||||
"record_template": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue