@djb25/digit-ui-module-wt 1.0.29 → 1.0.30
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 +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +12 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -7223,6 +7223,7 @@ const SearchFillingPointAddress = () => {
|
|
|
7223
7223
|
return (row === null || row === void 0 ? void 0 : row.fillingPointId) || (row === null || row === void 0 ? void 0 : (_row$fillingpointmeta = row.fillingpointmetadata) === null || _row$fillingpointmeta === void 0 ? void 0 : _row$fillingpointmeta.fillingPointId) || (row === null || row === void 0 ? void 0 : row.fillingPtName) || (row === null || row === void 0 ? void 0 : row.filling_pt_name) || (row === null || row === void 0 ? void 0 : row.fillingPoint) || "NA";
|
|
7224
7224
|
},
|
|
7225
7225
|
id: "fillingPoint",
|
|
7226
|
+
minWidth: 250,
|
|
7226
7227
|
Cell: ({
|
|
7227
7228
|
row
|
|
7228
7229
|
}) => {
|
|
@@ -7239,7 +7240,9 @@ const SearchFillingPointAddress = () => {
|
|
|
7239
7240
|
option: allFillingPoints,
|
|
7240
7241
|
select: value => onFillingPointSelect(row, value),
|
|
7241
7242
|
style: {
|
|
7242
|
-
textAlign: "left"
|
|
7243
|
+
textAlign: "left",
|
|
7244
|
+
width: "100%",
|
|
7245
|
+
minWidth: "250px"
|
|
7243
7246
|
},
|
|
7244
7247
|
optionKey: "fillingPointName",
|
|
7245
7248
|
t: t
|
|
@@ -25436,6 +25439,14 @@ const WTEmergencyFixedPointAcknowledgement = ({
|
|
|
25436
25439
|
const {
|
|
25437
25440
|
tenants
|
|
25438
25441
|
} = storeData || {};
|
|
25442
|
+
const {
|
|
25443
|
+
isLoading,
|
|
25444
|
+
data: workflow
|
|
25445
|
+
} = Digit.Hooks.useWorkflowDetails({
|
|
25446
|
+
tenantId: tenantId,
|
|
25447
|
+
moduleCode: "watertanker-fixedpoint"
|
|
25448
|
+
});
|
|
25449
|
+
console.log(workflow, "wt");
|
|
25439
25450
|
useEffect(() => {
|
|
25440
25451
|
try {
|
|
25441
25452
|
data.tenantId = tenantId;
|