vcomply-workflow-engine 2.6.111 → 2.6.112
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/bundles/vcomply-workflow-engine.umd.js +4 -4
- package/bundles/vcomply-workflow-engine.umd.js.map +1 -1
- package/esm2015/lib/add-multiple-risk/add-multiple-risk.component.js +3 -3
- package/esm2015/lib/workflow-risk/workflow-risk.component.js +3 -3
- package/fesm2015/vcomply-workflow-engine.js +4 -4
- package/fesm2015/vcomply-workflow-engine.js.map +1 -1
- package/package.json +1 -1
|
@@ -1908,8 +1908,8 @@
|
|
|
1908
1908
|
this.groupsList = [];
|
|
1909
1909
|
/* Creating an array for risk label with it's value. */
|
|
1910
1910
|
this.riskLabelList = [
|
|
1911
|
-
{ name: '
|
|
1912
|
-
{ name: '
|
|
1911
|
+
{ name: 'Newly Identified Risks', value: 1 },
|
|
1912
|
+
{ name: 'Rapidly Changing Risks', value: 2 }
|
|
1913
1913
|
];
|
|
1914
1914
|
this.description = {
|
|
1915
1915
|
mode: 'prime',
|
|
@@ -9504,8 +9504,8 @@
|
|
|
9504
9504
|
*/
|
|
9505
9505
|
AddMultipleRiskComponent.prototype.setRiskLabel = function (label) {
|
|
9506
9506
|
switch (label === null || label === void 0 ? void 0 : label.toLowerCase()) {
|
|
9507
|
-
case '
|
|
9508
|
-
case '
|
|
9507
|
+
case 'newly identified risks': return 1;
|
|
9508
|
+
case 'rapidly changing risks': return 2;
|
|
9509
9509
|
default: return 1;
|
|
9510
9510
|
}
|
|
9511
9511
|
};
|