vcomply-workflow-engine 3.4.38 → 3.4.39
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/log-an-issue/log-an-issue.component.mjs +4 -2
- package/fesm2015/vcomply-workflow-engine.mjs +1 -1
- package/fesm2015/vcomply-workflow-engine.mjs.map +1 -1
- package/fesm2020/vcomply-workflow-engine.mjs +3 -1
- package/fesm2020/vcomply-workflow-engine.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -34225,7 +34225,9 @@ class LogAnIssueComponent {
|
|
|
34225
34225
|
this.dataForEdit = issueData;
|
|
34226
34226
|
this.loader = false;
|
|
34227
34227
|
this.uiKitService.isLoader = false;
|
|
34228
|
-
const issueDueDate = issueData
|
|
34228
|
+
const issueDueDate = issueData?.frequency_details?.frequency_date
|
|
34229
|
+
.split('-')
|
|
34230
|
+
.map(Number);
|
|
34229
34231
|
this.logIssueForm = {
|
|
34230
34232
|
issueName: issueData.title ?? '',
|
|
34231
34233
|
evidenceRequired: issueData?.evidence?.evidence_flag ?? 0,
|