Swap input_types order in TextInput and TextOutput

This commit is contained in:
Gabriel Luiz Freitas Almeida 2024-03-30 20:12:38 -03:00
commit b2962ca1da
2 changed files with 2 additions and 2 deletions

View file

@ -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": {

View file

@ -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": {