Fixing Workflow Activity templates affected by a breaking change in OutcomeSerializerExtensions

(cherry picked from commit 4b3c67dc5e)
This commit is contained in:
Lombiq 2019-02-20 21:29:27 +01:00
parent 3404e0fe1b
commit c77f4f3cf1
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">