CSR-1600 prettier

This commit is contained in:
CarlNation 2024-05-14 09:58:05 -04:00
parent 88d34ee9e7
commit 195a0ddb0f
3 changed files with 6 additions and 7 deletions

View file

@ -59,10 +59,10 @@ export default {
if (!this.mobileFeeApplies) {
answers.forEach((item) => {
if (item.Name.toLowerCase() === "mobile"){
item.SubText = item.SubText.replace("*","");
if (item.Name.toLowerCase() === "mobile") {
item.SubText = item.SubText.replace("*", "");
}
})
});
}
return answers;
},

View file

@ -24,7 +24,8 @@
{{ errorMessage }}
</span>
</div>
<textBlock v-if="mobileFeeApplies"
<textBlock
v-if="mobileFeeApplies"
:customText="mobileFeeText"
cmsWidgetName="MobileFeeDisclaimerWidget"
typeStyle="caption" />

View file

@ -305,9 +305,7 @@ export default {
mobileFeeApplies() {
if (this.mobileFeePart) {
return true;
}
else
{
} else {
return false;
}
},