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.
@@ -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: 'New Risk', value: 1 },
1912
- { name: 'Emerging/Rapidly Changing risks', value: 2 }
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 'new risk': return 1;
9508
- case 'emerging/rapidly changing risks': return 2;
9507
+ case 'newly identified risks': return 1;
9508
+ case 'rapidly changing risks': return 2;
9509
9509
  default: return 1;
9510
9510
  }
9511
9511
  };