Merge pull request #6481 from KnibbsyMan/bug/editor-autocomplete-issue
Bug - Update Scripting Activities To Resolve Auto Complete Issues
This commit is contained in:
commit
82a1ae0126
|
|
@ -34,6 +34,7 @@ public class RunCSharp : CodeActivity<object?>
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "The script to run.",
|
||||
DefaultSyntax = "CSharp",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(RunCSharpOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@ public class RunJavaScript : CodeActivity<object?>
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "The script to run.",
|
||||
DefaultSyntax = "JavaScript",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(RunJavaScriptOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@ public class RunPython : CodeActivity<object?>
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "The script to run.",
|
||||
DefaultSyntax = "Python",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(RunPythonOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ public class SqlCommand : Activity
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "Command to run against the database.",
|
||||
DefaultSyntax = "Sql",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(SqlCodeOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -45,6 +45,7 @@ public class SqlQuery : Activity
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "Query to run against the database.",
|
||||
DefaultSyntax = "Sql",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(SqlCodeOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@ public class SqlSingleValue : Activity
|
|||
/// </summary>
|
||||
[Input(
|
||||
Description = "Query to run against the database.",
|
||||
DefaultSyntax = "Sql",
|
||||
UIHint = InputUIHints.CodeEditor,
|
||||
UIHandler = typeof(SqlCodeOptionsProvider)
|
||||
)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue