mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fixing Workflow Activity templates affected by a breaking change in OutcomeSerializerExtensions
(cherry picked from commit 4b3c67dc5e)
This commit is contained in:
@@ -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">
|
||||
|
||||
@@ -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">
|
||||
|
||||
@@ -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">
|
||||
|
||||
Reference in New Issue
Block a user