elsa-core
elsa-core copied to clipboard
Fix: Remove duplicate enum values in HttpStatusCode dropdown for WriteHttpResponse
When generating the dropdown list for the status input in the WriteHttpResponse activity, duplicate enum values were included due to Enum.GetValues() returning multiple names with the same underlying numeric value from System.Net.HttpStatusCode.
This fix filters the list to include only distinct values, grouped by their underlying integer representation.
Related issue: #6845