Skip to content

Commit

Permalink
Merge pull request #452 from DrDroidLab/@hotfix/kubectl-cmd-input-type
Browse files Browse the repository at this point in the history
Change input to multi line
  • Loading branch information
dimittal authored Aug 12, 2024
2 parents f9daec7 + 6fcdce2 commit f5aa9a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion executor/source_managers/eks_source_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def __init__(self):
FormField(key_name=StringValue(value="command"),
display_name=StringValue(value="Kubectl Command"),
data_type=LiteralType.STRING,
form_field_type=FormFieldType.TYPING_DROPDOWN_FT),
form_field_type=FormFieldType.MULTILINE_FT),
]
},
}
Expand Down
2 changes: 1 addition & 1 deletion executor/source_managers/gke_source_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def __init__(self):
FormField(key_name=StringValue(value="command"),
display_name=StringValue(value="Kubectl Command"),
data_type=LiteralType.STRING,
form_field_type=FormFieldType.TYPING_DROPDOWN_FT),
form_field_type=FormFieldType.MULTILINE_FT),
]
},
}
Expand Down

0 comments on commit f5aa9a7

Please sign in to comment.