Fixing Workflow Activity templates affected by a breaking change in OutcomeSerializerExtensions

This commit is contained in:
Lombiq
2019-02-20 21:29:27 +01:00
parent becb386adf
commit 4b3c67dc5e
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
@using Orchard.Workflows.Helpers
@{
var outcomes = ((string)Model.State.Outcomes).FormatOutcomesJson();
var outcomes = ((string)Model.State.Outcomes).FormatOutcomesJson(T);
}
<div data-outcomes="@outcomes">

View File

@@ -1,6 +1,6 @@
@using Orchard.Workflows.Helpers
@{
var outcomes = ((string)Model.State.Branches).FormatOutcomesJson();
var outcomes = ((string)Model.State.Branches).FormatOutcomesJson(T);
}
<div data-outcomes="@outcomes">

View File

@@ -1,6 +1,6 @@
@using Orchard.Workflows.Helpers
@{
var outcomes = ((string)Model.State.Branches).FormatOutcomesJson();
var outcomes = ((string)Model.State.Branches).FormatOutcomesJson(T);
}
<div data-outcomes="@outcomes" title="First of @outcomes">