Fix bug in ActivityDescriber

This commit is contained in:
Sipke Schoorstra 2019-09-23 15:55:44 +02:00
parent 8fdc93952b
commit 019e56043d
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@
<!-- CSS Files -->
<link href="~/assets/css/argon-dashboard.css?v=1.1.0" rel="stylesheet"/>
<link href="~/assets/css/elsa.css?v=1.1.0" rel="stylesheet"/>
<script src='https://unpkg.com/@@elsa-workflows/elsa-workflow-designer@0.0.47/dist/elsa-workflow-designer.js'></script>
<script src='https://unpkg.com/@@elsa-workflows/elsa-workflow-designer@0.0.48/dist/elsa-workflow-designer.js'></script>
@await RenderSectionAsync("HeadScripts", false)
</head>

View file

@ -91,7 +91,7 @@ namespace Elsa.WorkflowDesigner
if (type == typeof(string))
return ActivityPropertyTypes.Text;
if (typeof(IEnumerable<>).IsAssignableFrom(type))
if (typeof(IEnumerable).IsAssignableFrom(type))
return ActivityPropertyTypes.List;
return ActivityPropertyTypes.Text;