@medipass/utils 11.60.1 → 11.60.3

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/CHANGELOG.md CHANGED
@@ -3,6 +3,25 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [11.60.3](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.60.2...@medipass/utils@11.60.3) (2022-03-24)
7
+
8
+ **Note:** Version bump only for package @medipass/utils
9
+
10
+
11
+
12
+
13
+
14
+ ## [11.60.2](https://github.com/medipass/web-medicules/compare/@medipass/utils@11.60.1...@medipass/utils@11.60.2) (2022-03-24)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * take serviceDateString and fallback to serviceDate when dispaying service item dates ([#631](https://github.com/medipass/web-medicules/issues/631)) ([f924c2f](https://github.com/medipass/web-medicules/commit/f924c2f))
20
+
21
+
22
+
23
+
24
+
6
25
  ## [11.60.1](https://github.com/medipass/web/compare/@medipass/utils@11.60.0...@medipass/utils@11.60.1) (2022-03-16)
7
26
 
8
27
  **Note:** Version bump only for package @medipass/utils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@medipass/utils",
3
- "version": "11.60.1",
3
+ "version": "11.60.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -48,5 +48,5 @@
48
48
  "redux-thunk": "^2.2.0",
49
49
  "rimraf": "^2.6.2"
50
50
  },
51
- "gitHead": "f3fe43789e6a20a177034f62a809d1268d097756"
51
+ "gitHead": "892d6d7134034adca0542c4f1fe86d43897feaff"
52
52
  }
package/service-items.js CHANGED
@@ -186,7 +186,7 @@ function mapItemsToClaimItems(transaction) {
186
186
  itemCode: _get(claimItem, 'icare.itemCode') || _get(claimItem, 'itemCode'),
187
187
  description: _get(item, 'customDescription') || _get(item, 'description') || _get(claimItem, 'icare.description') || _get(claimItem, 'description'),
188
188
  notes: _get(item, 'description'),
189
- serviceDateString: item.serviceDate,
189
+ serviceDateString: (item == null ? void 0 : item.serviceDateString) || item.serviceDate,
190
190
  isNonClaimable: isNonClaimable
191
191
  });
192
192
  });