Skip to content

Commit 4379091

Browse files
committed
WFE 5.0.3
1 parent 42df7e9 commit 4379091

117 files changed

Lines changed: 2890 additions & 760 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Designer/templates/activity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ <h4 style="padding-bottom: 1px;border-bottom: 1px solid rgba(34,36,38,.15);">{{
259259

260260

261261
me.VueConfig.methods.addRow = function(items){
262-
items.push({});
262+
items.push({ActionParameter:""});
263263
};
264264

265265
me.VueConfig.methods.removeRow = function(items, index){

Designer/templates/codeform.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ <h3>{{ParentItem.Name ? ParentItem.Name : "Unnamed code acttion"}} {{ labels.Tit
107107

108108
me.VueConfig.watch = {
109109
ParentItem : {
110-
handler(val){
110+
handle: function(val){
111111
updateDataFromParent();
112112
},
113113
deep: true

Designer/templates/jsonform.html

Lines changed: 175 additions & 45 deletions
Large diffs are not rendered by default.

Designer/templates/parametersform.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,18 @@ <h3>{{name}} {{ labels.EditParameters }} |
142142
me.VueConfig.methods.onUpdate = function(parentItem){
143143
me.parentItem = parentItem;
144144
me.VueConfig.data.items = WorkflowDesignerCommon.clone(parentItem.ParameterDefinitions);
145+
146+
me.VueConfig.data.items.forEach(function (item){
147+
if (item.Type === 'MultiSelect' && typeof item.DefaultValue === 'string')
148+
{
149+
item.DefaultValue = WorkflowDesignerCommon.toJSON(item.DefaultValue);
150+
}
151+
else if (item.Type === 'Dropdown' && item.DefaultValue !== null && typeof item.DefaultValue !== 'string')
152+
{
153+
item.DefaultValue = WorkflowDesignerCommon.toString(item.DefaultValue);
154+
}
155+
});
156+
145157
me.VueConfig.data.name = parentItem.Name;
146158
me.VueConfig.data.readonly = me.graph.Settings.readonly;
147159
};

Designer/templates/transition.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ <h4 class="SettingsHeader">{{ labels.Trigger }}</h4>
7878
<div style="margin-bottom: 10px;">
7979
<h4 class="SettingsHeader">
8080
<span :style="showconditionerror ? 'color:red' : ''" :title="showconditionerror">{{ labels.Condition }}</span>
81-
<a v-if="!readonly && FormData.conditionType == 'Conditional'" style="cursor:pointer" @click="addRow(FormData.Conditions, {Action:{}})"> | {{ ButtonTextCreate }}</a>
81+
<a v-if="!readonly && FormData.conditionType == 'Conditional'" style="cursor:pointer" @click="addRow(FormData.Conditions, {Action:{ActionParameter:''}})"> | {{ ButtonTextCreate }}</a>
8282
</h4>
8383

8484
<el-form-item class="SettingsWithPadding" style="width: 380px;">

Designer/workflowdesigner.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Samples/ASP.NET Core/MSSQL/WF.Sample.Business/WF.Sample.Business.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="WorkflowEngine.NETCore-Core" Version="5.0.2" />
8+
<PackageReference Include="WorkflowEngine.NETCore-Core" Version="5.0.3" />
99
</ItemGroup>
1010

1111
<ItemGroup>

Samples/ASP.NET Core/MSSQL/WF.Sample.MsSql/WF.Sample.MsSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageReference Include="AutoMapper" Version="8.0.0" />
1717
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.2.0" />
1818
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="2.2.0" />
19-
<PackageReference Include="WorkflowEngine.NETCore-ProviderForMSSQL" Version="5.0.2" />
19+
<PackageReference Include="WorkflowEngine.NETCore-ProviderForMSSQL" Version="5.0.3" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

Samples/ASP.NET Core/MSSQL/WF.Sample/wwwroot/js/workflowdesigner.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Samples/ASP.NET Core/MSSQL/WF.Sample/wwwroot/templates/activity.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ <h4 style="padding-bottom: 1px;border-bottom: 1px solid rgba(34,36,38,.15);">{{
259259

260260

261261
me.VueConfig.methods.addRow = function(items){
262-
items.push({});
262+
items.push({ActionParameter:""});
263263
};
264264

265265
me.VueConfig.methods.removeRow = function(items, index){

0 commit comments

Comments
 (0)