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" />
|
cmsWidgetName="SiteSubHeaderWidget" />
|
||||||
<textBlock
|
<textBlock
|
||||||
v-if="stateSpecificText"
|
v-if="stateSpecificText"
|
||||||
class="subheader-secondary"
|
|
||||||
:customText="stateSpecificText" />
|
:customText="stateSpecificText" />
|
||||||
<div class="main-content-container">
|
<div class="main-content-container">
|
||||||
<hr class="section-divider" />
|
<hr class="section-divider" />
|
||||||
|
|
@ -324,9 +323,9 @@ export default {
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
stateSpecificText() {
|
stateSpecificText() {
|
||||||
const stateSpecificText = this.getCmsContent(this.widget.stateSpecificText, widgetFields.TEXT_BLOCK_WIDGET.TEXT);
|
const rawStateSpecificText = this.getCmsContent(this.widget.stateSpecificText, widgetFields.TEXT_BLOCK_WIDGET.TEXT);
|
||||||
if (stateSpecificText) {
|
if (rawStateSpecificText) {
|
||||||
return processIfStatements(stateSpecificText, 'custom', this.getStateSpecificText);
|
return processIfStatements(rawStateSpecificText, 'custom', this.getStateSpecificText);
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
@ -578,7 +577,6 @@ export default {
|
||||||
action = 'Unverified';
|
action = 'Unverified';
|
||||||
label = 'Unverified';
|
label = 'Unverified';
|
||||||
break;
|
break;
|
||||||
d
|
|
||||||
}
|
}
|
||||||
this.pushEventToGA('Submit Appointment', action, label, true, null, 1);
|
this.pushEventToGA('Submit Appointment', action, label, true, null, 1);
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue