diff --git a/auth-web/package-lock.json b/auth-web/package-lock.json index 2f05aa20f..cbb19b2f8 100644 --- a/auth-web/package-lock.json +++ b/auth-web/package-lock.json @@ -1,12 +1,12 @@ { "name": "auth-web", - "version": "2.7.0", + "version": "2.7.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "auth-web", - "version": "2.7.0", + "version": "2.7.1", "dependencies": { "@bcrs-shared-components/base-address": "2.0.3", "@bcrs-shared-components/bread-crumb": "1.0.8", diff --git a/auth-web/package.json b/auth-web/package.json index 7fb6a9b0f..26ec6f8c5 100644 --- a/auth-web/package.json +++ b/auth-web/package.json @@ -1,6 +1,6 @@ { "name": "auth-web", - "version": "2.7.0", + "version": "2.7.1", "appName": "Auth Web", "sbcName": "SBC Common Components", "private": true, diff --git a/auth-web/src/components/auth/common/Product.vue b/auth-web/src/components/auth/common/Product.vue index fb9ddb418..7c0d37872 100644 --- a/auth-web/src/components/auth/common/Product.vue +++ b/auth-web/src/components/auth/common/Product.vue @@ -29,7 +29,7 @@ class="title font-weight-bold product-title mt-n1" :data-test="productDetails.code" > - {{ productDetails.description }} + {{ productDescription(productDetails.code, productDetails.description) }} diff --git a/auth-web/tests/unit/components/Product.spec.ts b/auth-web/tests/unit/components/Product.spec.ts index de9087e35..be48f4dca 100644 --- a/auth-web/tests/unit/components/Product.spec.ts +++ b/auth-web/tests/unit/components/Product.spec.ts @@ -15,14 +15,14 @@ describe('Product.vue', () => { const productDetails = { 'code': 'VS', - 'description': 'test', + 'description': 'Vital Statistics', 'url': 'url', 'type': 'PARTNER', 'subscriptionStatus': ProductStatus.NOT_SUBSCRIBED } const pprProduct = { 'code': 'PPR', - 'description': 'ppr', + 'description': 'Personal Property Registry', 'url': 'url', 'type': 'PARTNER', 'subscriptionStatus': ProductStatus.NOT_SUBSCRIBED,