Skip to content

Commit 9239b9d

Browse files
committed
update product drscription
1 parent 85ff453 commit 9239b9d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

auth-web/src/components/auth/common/Product.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
class="title font-weight-bold product-title mt-n1"
3030
:data-test="productDetails.code"
3131
>
32-
{{ productDetails.description }}
32+
{{ productDiscription(productDetails.code) }}
3333
<v-tooltip
3434
v-if="productPremTooltipText(productDetails.code)"
3535
class="pa-2"
@@ -199,6 +199,7 @@ import AccountMixin from '@/components/auth/mixins/AccountMixin.vue'
199199
import LaunchDarklyService from 'sbc-common-components/src/services/launchdarkly.services'
200200
import ProductFee from '@/components/auth/common/ProductFeeViewEdit.vue'
201201
import ProductTos from '@/components/auth/common/ProductTOS.vue'
202+
import { productDisplay } from '@/resources/display-mappers'
202203
203204
const TOS_NEEDED_PRODUCT = ['VS']
204205
@@ -379,6 +380,10 @@ export default class Product extends Mixins(AccountMixin) {
379380
public productPremTooltipText (code: string) {
380381
return LaunchDarklyService.getFlag(`product-${code}-prem-tooltip`)
381382
}
383+
384+
public productDiscription (code: string) {
385+
return productDisplay[code]
386+
}
382387
}
383388
</script>
384389

0 commit comments

Comments
 (0)