@djb25/digit-ui-module-wt 1.0.75 → 1.0.76

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.
@@ -4413,7 +4413,7 @@ const Inbox = _ref => {
4413
4413
  parentRoute: parentRoute,
4414
4414
  searchParams: searchParams,
4415
4415
  sortParams: sortParams,
4416
- linkPrefix: parentRoute + "/application-details/",
4416
+ linkPrefix: detailRoute ? detailRoute + "/" : parentRoute + "/booking-details/",
4417
4417
  tableConfig: rest !== null && rest !== void 0 && rest.tableConfig ? rest.tableConfig : TableConfig(t)[moduleCode],
4418
4418
  filterComponent: filterComponent,
4419
4419
  EmptyResultInboxComp: EmptyResultInboxComp,
@@ -25517,7 +25517,7 @@ const WSFeeEstimation = _ref => {
25517
25517
  className: "border-none",
25518
25518
  key: "WS_COMMON_TOTAL_AMT",
25519
25519
  label: "" + t("WS_COMMON_TOTAL_AMT"),
25520
- text: /*#__PURE__*/React.createElement("span", null, "\u20B9", (billDetails === null || billDetails === void 0 ? void 0 : billDetails.totalAmount) || 0),
25520
+ text: /*#__PURE__*/React.createElement("span", null, "\u20B9", billDetails !== null && billDetails !== void 0 && billDetails.totalAmount ? Number(billDetails === null || billDetails === void 0 ? void 0 : billDetails.totalAmount).toFixed(2) : "0.00"),
25521
25521
  textStyle: {
25522
25522
  fontSize: "24px",
25523
25523
  fontWeight: "700"