Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ public IEnumerable<FeatureDescriptor> List()
/// <inheritdoc />
public FeatureDescriptor? Find(string fullName)
{
var shellFeature = _shellFeatures.FirstOrDefault(sf =>
MapToFullName(sf) == fullName);
var shellFeature = _shellFeatures
.Where(sf => sf.StartupType != null)
.FirstOrDefault(sf => MapToFullName(sf) == fullName);

return shellFeature != null ? MapToElsaFeatureDescriptor(shellFeature) : null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public class WorkflowManagementFeature : IShellFeature
/// </summary>
public HashSet<VariableDescriptor> VariableDescriptors { get; } =
[
new(typeof(object), PrimitivesCategory, "The root class for all object in the CLR System."),
new(typeof(object), PrimitivesCategory, "The root class for all objects in the CLR System."),
new(typeof(string), PrimitivesCategory, "Represents a static string of characters."),
new(typeof(bool), PrimitivesCategory, "Represents a true or false value."),
new(typeof(int), PrimitivesCategory, "A 32 bit integer."),
Expand Down