@abi-software/map-side-bar 2.13.0-acupoint.1 → 2.13.0-acupoint.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abi-software/map-side-bar",
3
- "version": "2.13.0-acupoint.1",
3
+ "version": "2.13.0-acupoint.2",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -201,7 +201,7 @@ export default {
201
201
  },
202
202
  {
203
203
  "key": "acupoints.implied.no",
204
- "label": "Non Implied",
204
+ "label": "Not implied",
205
205
  "value": "Implied>No"
206
206
  },
207
207
  ],
@@ -288,7 +288,7 @@ export default {
288
288
  if (filter.facetPropPath === "acupoints.implied") {
289
289
  if (filter.facet === "Implied") {
290
290
  this.currentFilters['mri'] = 'Off'
291
- } else if (filter.facet === 'Non Implied') {
291
+ } else if (filter.facet === 'Not implied') {
292
292
  this.currentFilters['mri'] = 'On'
293
293
  } else {
294
294
  this.currentFilters['mri'] = 'Both'
@@ -355,8 +355,7 @@ export default {
355
355
  }
356
356
  if (this.currentFilters['mri'] !== "Both") {
357
357
  const mri = this.currentFilters['mri'] === "On" ? true : false
358
- filteredList = filteredList.filter(
359
- item => (item.onMRI ? true : false) === mri)
358
+ filteredList = filteredList.filter(item => (item.onMRI ? true : false) === mri)
360
359
  }
361
360
  if (this.currentFilters['who'] !== "Both") {
362
361
  const who = this.currentFilters['who'] === "Yes" ? true : false