@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.
package/dist/index.js CHANGED
@@ -4416,7 +4416,7 @@ const Inbox = _ref => {
4416
4416
  parentRoute: parentRoute,
4417
4417
  searchParams: searchParams,
4418
4418
  sortParams: sortParams,
4419
- linkPrefix: parentRoute + "/application-details/",
4419
+ linkPrefix: detailRoute ? detailRoute + "/" : parentRoute + "/booking-details/",
4420
4420
  tableConfig: rest !== null && rest !== void 0 && rest.tableConfig ? rest.tableConfig : TableConfig(t)[moduleCode],
4421
4421
  filterComponent: filterComponent,
4422
4422
  EmptyResultInboxComp: EmptyResultInboxComp,
@@ -25520,7 +25520,7 @@ const WSFeeEstimation = _ref => {
25520
25520
  className: "border-none",
25521
25521
  key: "WS_COMMON_TOTAL_AMT",
25522
25522
  label: "" + t("WS_COMMON_TOTAL_AMT"),
25523
- text: /*#__PURE__*/React__default.createElement("span", null, "\u20B9", (billDetails === null || billDetails === void 0 ? void 0 : billDetails.totalAmount) || 0),
25523
+ text: /*#__PURE__*/React__default.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"),
25524
25524
  textStyle: {
25525
25525
  fontSize: "24px",
25526
25526
  fontWeight: "700"