@mseva/digit-ui-module-sv 1.1.48 → 1.1.49-dev.1

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.
@@ -19300,6 +19300,7 @@ const getTimelineAcknowledgementData = (workflowDetails, tenantInfo, pdfFiles =
19300
19300
  const formats = (downloadLink === null || downloadLink === void 0 ? void 0 : (_downloadLink$split = downloadLink.split(",")) === null || _downloadLink$split === void 0 ? void 0 : _downloadLink$split.filter(Boolean)) || [];
19301
19301
  return (formats === null || formats === void 0 ? void 0 : formats.find(link => !(link !== null && link !== void 0 && link.includes("large")) && !(link !== null && link !== void 0 && link.includes("medium")) && !(link !== null && link !== void 0 && link.includes("small")))) || (formats === null || formats === void 0 ? void 0 : formats[0]) || "";
19302
19302
  };
19303
+ const pattern = /\[#\?.*?\*\*\]/;
19303
19304
  const timelineRows = timeline.map((item, index) => {
19304
19305
  var _item$auditDetails, _item$auditDetails2, _item$assigner, _item$assigner2, _item$assigner3, _item$wfComment;
19305
19306
  const createdDate = (item === null || item === void 0 ? void 0 : (_item$auditDetails = item.auditDetails) === null || _item$auditDetails === void 0 ? void 0 : _item$auditDetails.created) || "N/A";
@@ -19309,7 +19310,8 @@ const getTimelineAcknowledgementData = (workflowDetails, tenantInfo, pdfFiles =
19309
19310
  const mobileNumber = (item === null || item === void 0 ? void 0 : (_item$assigner3 = item.assigner) === null || _item$assigner3 === void 0 ? void 0 : _item$assigner3.mobileNumber) || "N/A";
19310
19311
  const action = (item === null || item === void 0 ? void 0 : item.performedAction) || "N/A";
19311
19312
  const status = (item === null || item === void 0 ? void 0 : item.status) || (item === null || item === void 0 ? void 0 : item.state) || "N/A";
19312
- const comment = (item === null || item === void 0 ? void 0 : (_item$wfComment = item.wfComment) === null || _item$wfComment === void 0 ? void 0 : _item$wfComment[0]) || "-";
19313
+ const rawComment = (item === null || item === void 0 ? void 0 : (_item$wfComment = item.wfComment) === null || _item$wfComment === void 0 ? void 0 : _item$wfComment[0]) || "-";
19314
+ const comment = typeof rawComment === "string" ? rawComment.split(pattern)[0] : rawComment;
19313
19315
  const documents = (item === null || item === void 0 ? void 0 : item.wfDocuments) || [];
19314
19316
  const sla = (item === null || item === void 0 ? void 0 : item.sla) || "N/A";
19315
19317
  const assignedTo = Array.isArray(item === null || item === void 0 ? void 0 : item.assignes) ? item.assignes.map(a => a === null || a === void 0 ? void 0 : a.name).filter(Boolean).join(", ") : "";