INSR-10489: Remove unneeded class, fix unneeded text, fix variable name
This commit is contained in:
parent
3bc87fd128
commit
8755ce6ba6
1 changed files with 3 additions and 5 deletions
|
|
@ -21,7 +21,6 @@
|
|||
cmsWidgetName="SiteSubHeaderWidget" />
|
||||
<textBlock
|
||||
v-if="stateSpecificText"
|
||||
class="subheader-secondary"
|
||||
:customText="stateSpecificText" />
|
||||
<div class="main-content-container">
|
||||
<hr class="section-divider" />
|
||||
|
|
@ -324,9 +323,9 @@ export default {
|
|||
};
|
||||
},
|
||||
stateSpecificText() {
|
||||
const stateSpecificText = this.getCmsContent(this.widget.stateSpecificText, widgetFields.TEXT_BLOCK_WIDGET.TEXT);
|
||||
if (stateSpecificText) {
|
||||
return processIfStatements(stateSpecificText, 'custom', this.getStateSpecificText);
|
||||
const rawStateSpecificText = this.getCmsContent(this.widget.stateSpecificText, widgetFields.TEXT_BLOCK_WIDGET.TEXT);
|
||||
if (rawStateSpecificText) {
|
||||
return processIfStatements(rawStateSpecificText, 'custom', this.getStateSpecificText);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
@ -578,7 +577,6 @@ export default {
|
|||
action = 'Unverified';
|
||||
label = 'Unverified';
|
||||
break;
|
||||
d
|
||||
}
|
||||
this.pushEventToGA('Submit Appointment', action, label, true, null, 1);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue