You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class VehicleActivity : Activity<string>
{
[Input(
Description = "The content type to use when sending the request.",
UIHint = InputUIHints.DropDown,
UIHandlers = [typeof(VehicleUIHandler), typeof(RefreshUIHandler)]
)]
public Input<string> Brand { get; set; } = default!;
}
In the activity Input property is shows the empty list
Description
A custom dropdown options provider is not working.
Steps to Reproduce
builder.Services.AddSingleton<VehicleUIHandler>();
Reproduction Rate: every time
Additional Configuration:
https://github.com/elsa-workflows/elsa-samples/tree/main/src/aspnet/Elsa.Samples.AspNet.CustomUIHandler
Expected Behavior
The Vehicle activity suppose to show the list items mentioned in the VehicleUIHandler.
Actual Behavior
It not listing the items. It means dropdown is empty.
Environment
Troubleshooting Attempts
The text was updated successfully, but these errors were encountered: