From 2af951f6c37c6a096e2c6e0d7837501ada6b744c Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Wed, 11 Dec 2024 16:01:57 +0100 Subject: [PATCH] Update display name in WorkflowStorageDriver Remove the "Deprecated" label from the display name for clarity while keeping the `Obsolete` attribute to indicate planned deprecation. This ensures better alignment between the display name and actual usage guidance. --- .../VariableStorageDrivers/WorkflowStorageDriver.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/Elsa.Workflows.Core/VariableStorageDrivers/WorkflowStorageDriver.cs b/src/modules/Elsa.Workflows.Core/VariableStorageDrivers/WorkflowStorageDriver.cs index 1557b730f2..9b393aae91 100644 --- a/src/modules/Elsa.Workflows.Core/VariableStorageDrivers/WorkflowStorageDriver.cs +++ b/src/modules/Elsa.Workflows.Core/VariableStorageDrivers/WorkflowStorageDriver.cs @@ -9,7 +9,7 @@ namespace Elsa.Workflows.Services; /// /// A storage driver that stores objects in the workflow state itself. /// -[Display(Name = "Workflow (Deprecated)")] +[Display(Name = "Workflow")] [Obsolete("This is no longer used and will be removed in a future version. Use the WorkflowInstanceStorageDriver instead.")] public class WorkflowStorageDriver : IStorageDriver {