Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
commit
27e442136b
2 changed files with 17 additions and 3 deletions
|
|
@ -130,6 +130,20 @@ export default {
|
||||||
this.parentAccountNumber.toString(),
|
this.parentAccountNumber.toString(),
|
||||||
false
|
false
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const billToAccountNumber = await baseMixin.methods.dispatchStoreActionWithLogging(
|
||||||
|
storeActions.GET_BILL_TO_ACCOUNT_NUMBER,
|
||||||
|
{},
|
||||||
|
"insurance-company",
|
||||||
|
false
|
||||||
|
);
|
||||||
|
|
||||||
|
baseMixin.methods.dispatchStoreAction(
|
||||||
|
storeActions.SAVE_BILL_TO_ACCOUNT_NUMBER,
|
||||||
|
billToAccountNumber,
|
||||||
|
false
|
||||||
|
);
|
||||||
|
|
||||||
navigateToHeritageFunnel({
|
navigateToHeritageFunnel({
|
||||||
shouldSaveSession: true,
|
shouldSaveSession: true,
|
||||||
pageNameToLog: "insurance-company",
|
pageNameToLog: "insurance-company",
|
||||||
|
|
|
||||||
|
|
@ -8,15 +8,15 @@
|
||||||
:aria-label="buttonLabel"
|
:aria-label="buttonLabel"
|
||||||
class="button-content list-button-content d-flex flex-column justify-content-center py-3 px-4">
|
class="button-content list-button-content d-flex flex-column justify-content-center py-3 px-4">
|
||||||
<div class="row-one">
|
<div class="row-one">
|
||||||
<span class="m-0 button-label-copy" :class="textPosition">{{
|
<span class="m-0 button-label-copy text-truncate" :class="textPosition">{{
|
||||||
buttonLabel
|
buttonLabel
|
||||||
}}</span>
|
}}</span>
|
||||||
<span class="m-0 caption ms-1" :class="textPosition">{{
|
<span class="m-0 caption mx-1 text-nowrap" :class="textPosition">{{
|
||||||
buttonLabelSubCopy
|
buttonLabelSubCopy
|
||||||
}}</span>
|
}}</span>
|
||||||
<div
|
<div
|
||||||
v-if="displayAvailabilityIndicators"
|
v-if="displayAvailabilityIndicators"
|
||||||
class="availability-indicator rounded-pill"
|
class="availability-indicator rounded-pill text-nowrap"
|
||||||
:class="availabilityRatingClass">
|
:class="availabilityRatingClass">
|
||||||
<div
|
<div
|
||||||
v-if="!isLoaderDisplayed"
|
v-if="!isLoaderDisplayed"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue