mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
Fixing Workflow Activity templates affected by a breaking change in OutcomeSerializerExtensions
(cherry picked from commit 4b3c67dc5e
)
This commit is contained in:
parent
3404e0fe1b
commit
c77f4f3cf1
@ -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">
|
||||
|
Loading…
Reference in New Issue
Block a user