Merge pull request #6481 from KnibbsyMan/bug/editor-autocomplete-issue

Bug - Update Scripting Activities To Resolve Auto Complete Issues
This commit is contained in:
Sipke Schoorstra 2025-03-10 08:58:03 +01:00 committed by GitHub
commit 82a1ae0126
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 6 additions and 0 deletions

View file

@ -34,6 +34,7 @@ public class RunCSharp : CodeActivity<object?>
/// </summary>
[Input(
Description = "The script to run.",
DefaultSyntax = "CSharp",
UIHint = InputUIHints.CodeEditor,
UIHandler = typeof(RunCSharpOptionsProvider)
)]

View file

@ -33,6 +33,7 @@ public class RunJavaScript : CodeActivity<object?>
/// </summary>
[Input(
Description = "The script to run.",
DefaultSyntax = "JavaScript",
UIHint = InputUIHints.CodeEditor,
UIHandler = typeof(RunJavaScriptOptionsProvider)
)]

View file

@ -32,6 +32,7 @@ public class RunPython : CodeActivity<object?>
/// </summary>
[Input(
Description = "The script to run.",
DefaultSyntax = "Python",
UIHint = InputUIHints.CodeEditor,
UIHandler = typeof(RunPythonOptionsProvider)
)]

View file

@ -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)
)]

View file

@ -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)
)]

View file

@ -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)
)]