diff --git a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ExportActions/BuildRecipe.cshtml b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ExportActions/BuildRecipe.cshtml index 25b165c65..1e60195c2 100644 --- a/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ExportActions/BuildRecipe.cshtml +++ b/src/Orchard.Web/Modules/Orchard.ImportExport/Views/EditorTemplates/ExportActions/BuildRecipe.cshtml @@ -16,9 +16,11 @@ @Html.Hint(@exportStep.Description) -
- @Display(exportStep.Editor) -
+ @if (exportStep.Editor != null) { +
+ @Display(exportStep.Editor) +
+ } exportStepIndex++; if (exportStepIndex < Model.Steps.Count) {