@byu-oit/vue-decision-processing-components
Advanced tools
Comparing version 8.20.1 to 8.20.2
@@ -5,2 +5,9 @@ # Changelog | ||
### [8.20.2](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.20.1...v8.20.2) (2020-11-03) | ||
### Bug Fixes | ||
* arrow function syntax ([6827b17](https://github.com/byu-oit/vue-decision-processing-components/commit/6827b17aca015b3fe3cb1d8ef66f19965fdf70f1)) | ||
### [8.20.1](https://github.com/byu-oit/vue-decision-processing-components/compare/v8.20.0...v8.20.1) (2020-11-02) | ||
@@ -7,0 +14,0 @@ |
{ | ||
"name": "@byu-oit/vue-decision-processing-components", | ||
"version": "8.20.1", | ||
"version": "8.20.2", | ||
"description": "Vue components shared between decision processing systems for the CES schools.", | ||
@@ -5,0 +5,0 @@ "dependencies": { |
@@ -34,3 +34,3 @@ import get from 'lodash.get' | ||
const zipCode = get(b, 'postal_code.value') | ||
if (countryCode === 'USA' && !addressLines.find(l -> l.includes(city))) { | ||
if (countryCode === 'USA' && !addressLines.find(l => l.includes(city))) { | ||
addressLines.push(`${city}, ${stateCode} ${zipCode}`) | ||
@@ -37,0 +37,0 @@ } |
394270