vcomply-workflow-engine 3.4.66 → 3.4.67
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/lib/workflow-engine-container/workflow-engine-container.component.mjs +1 -2
- package/esm2020/lib/workflow-program/workflow-program.component.mjs +5 -4
- package/fesm2015/vcomply-workflow-engine.mjs +4 -4
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +4 -4
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -36987,17 +36987,18 @@ class WorkflowProgramComponent {
|
|
|
36987
36987
|
else {
|
|
36988
36988
|
url = 'https://' + window.location.host;
|
|
36989
36989
|
}
|
|
36990
|
+
this.createdProgramId = '1';
|
|
36990
36991
|
if (window.location.host.startsWith('localhost')) {
|
|
36991
|
-
url += '/
|
|
36992
|
+
url += '/compliance/programs/' + this.createdProgramId;
|
|
36992
36993
|
}
|
|
36993
36994
|
else {
|
|
36994
|
-
url += '/program/
|
|
36995
|
+
url += '/program/compliance/programs/' + this.createdProgramId;
|
|
36995
36996
|
}
|
|
36996
36997
|
if (!this.isWebView) {
|
|
36997
36998
|
window.location.href = url;
|
|
36998
36999
|
}
|
|
36999
37000
|
else {
|
|
37000
|
-
this.closeWorkflow.emit({ evt: '', confirm: false,
|
|
37001
|
+
this.closeWorkflow.emit({ evt: '', confirm: false, url });
|
|
37001
37002
|
}
|
|
37002
37003
|
}
|
|
37003
37004
|
resetForm() {
|
|
@@ -40116,7 +40117,6 @@ class WorkflowEngineContainerComponent {
|
|
|
40116
40117
|
}
|
|
40117
40118
|
}
|
|
40118
40119
|
closeWorkflowEngine(evt) {
|
|
40119
|
-
debugger;
|
|
40120
40120
|
if (evt?.confirm === false) {
|
|
40121
40121
|
this.checkRefresh();
|
|
40122
40122
|
this.closeWorkflow.emit({
|