From eecebb70be5981d89099039ba349ca5637b4c289 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Sat, 23 Nov 2024 15:58:27 +0100 Subject: [PATCH] Add ExpressionEditor UI hint Introduced a new constant 'ExpressionEditor' to the InputUIHints class. This addition will support new functionalities related to handling expression-based inputs in the UI. --- src/modules/Elsa.Workflows.Core/UIHints/InputUIHints.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/modules/Elsa.Workflows.Core/UIHints/InputUIHints.cs b/src/modules/Elsa.Workflows.Core/UIHints/InputUIHints.cs index f1f753867..8465e1bbf 100644 --- a/src/modules/Elsa.Workflows.Core/UIHints/InputUIHints.cs +++ b/src/modules/Elsa.Workflows.Core/UIHints/InputUIHints.cs @@ -14,6 +14,7 @@ public static class InputUIHints public const string DropDown = "dropdown"; public const string MultiText = "multitext"; public const string CodeEditor = "code-editor"; + public const string ExpressionEditor = "expression-editor"; public const string VariablePicker = "variable-picker"; public const string TypePicker = "type-picker"; public const string WorkflowDefinitionPicker = "workflow-definition-picker";