From 9239b9d40c2bf23f4f845dd2f04299b1f32eefcb Mon Sep 17 00:00:00 2001 From: Jia Xu Date: Fri, 3 Jan 2025 16:52:38 -0800 Subject: [PATCH 1/4] update product drscription --- auth-web/src/components/auth/common/Product.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/auth-web/src/components/auth/common/Product.vue b/auth-web/src/components/auth/common/Product.vue index fb9ddb4183..e78684d394 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 }} + {{ productDiscription(productDetails.code) }} From 59416ab49085108beb322d625279560262f725d6 Mon Sep 17 00:00:00 2001 From: Jia Xu Date: Fri, 3 Jan 2025 16:57:01 -0800 Subject: [PATCH 2/4] version update --- auth-web/package-lock.json | 4 ++-- auth-web/package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/auth-web/package-lock.json b/auth-web/package-lock.json index 2f05aa20f5..cbb19b2f87 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 7fb6a9b0f4..26ec6f8c5d 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, From adedf05b18f2173ec6da5f5121d9d0f1544a0a4f Mon Sep 17 00:00:00 2001 From: Jia Xu Date: Fri, 3 Jan 2025 17:13:08 -0800 Subject: [PATCH 3/4] unit tset fix --- auth-web/src/components/auth/common/Product.vue | 6 +++--- auth-web/tests/unit/components/Product.spec.ts | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/auth-web/src/components/auth/common/Product.vue b/auth-web/src/components/auth/common/Product.vue index e78684d394..01374bbf3b 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" > - {{ productDiscription(productDetails.code) }} + {{ productDiscription(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 de9087e35e..be48f4dca1 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, From c695fe409b2c57d4c3d588861954a1ae54bda9e0 Mon Sep 17 00:00:00 2001 From: Jia Xu Date: Tue, 7 Jan 2025 10:08:32 -0800 Subject: [PATCH 4/4] typo --- auth-web/src/components/auth/common/Product.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/auth-web/src/components/auth/common/Product.vue b/auth-web/src/components/auth/common/Product.vue index 01374bbf3b..7c0d37872d 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" > - {{ productDiscription(productDetails.code, productDetails.description) }} + {{ productDescription(productDetails.code, productDetails.description) }}