Fixing some formatting issues.
This commit is contained in:
parent
b47200ce27
commit
f39e82a3ab
1 changed files with 7 additions and 15 deletions
|
|
@ -52,6 +52,7 @@ body {
|
||||||
.diagnostic-info {
|
.diagnostic-info {
|
||||||
color: #db0020;
|
color: #db0020;
|
||||||
font-family: 'UrbanistSemiBold', Roboto, Arial, Helvetica, sans-serif;
|
font-family: 'UrbanistSemiBold', Roboto, Arial, Helvetica, sans-serif;
|
||||||
|
word-wrap: break-word;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<title>Error - Safelite</title>
|
<title>Error - Safelite</title>
|
||||||
|
|
@ -70,15 +71,6 @@ body {
|
||||||
We encountered an error while processing your appointment. You can return to our site and try scheduling again at a later time.
|
We encountered an error while processing your appointment. You can return to our site and try scheduling again at a later time.
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<!--
|
|
||||||
<div class="cta">
|
|
||||||
<a href="/">
|
|
||||||
<button class="cta-button">
|
|
||||||
Continue to Safelite.com
|
|
||||||
</button>
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
-->
|
|
||||||
<div class="diagnostic-info" id="diagnostic-container">
|
<div class="diagnostic-info" id="diagnostic-container">
|
||||||
<hr />
|
<hr />
|
||||||
<h2 class="subheader">
|
<h2 class="subheader">
|
||||||
|
|
@ -145,7 +137,7 @@ body {
|
||||||
return match;
|
return match;
|
||||||
}
|
}
|
||||||
|
|
||||||
function getExperimentSettingsFromVuex(storeData) {
|
function getExperimentSettingsFromStore(storeData) {
|
||||||
const experiments = storeData?.applicationUser?.experiments;
|
const experiments = storeData?.applicationUser?.experiments;
|
||||||
|
|
||||||
if(experiments) {
|
if(experiments) {
|
||||||
|
|
@ -224,7 +216,7 @@ body {
|
||||||
// =============== Collect header data:
|
// =============== Collect header data:
|
||||||
headerInfo = [];
|
headerInfo = [];
|
||||||
|
|
||||||
headerInfo.push({ name: 'X-Experiment-Data', value: JSON.stringify(getExperimentSettingsFromVuex(mainStore)) });
|
headerInfo.push({ name: 'X-Experiment-Data', value: JSON.stringify(getExperimentSettingsFromStore(mainStore)) });
|
||||||
headerInfo.push({ name: 'X-Application-Name', value: 'ISS' });
|
headerInfo.push({ name: 'X-Application-Name', value: 'ISS' });
|
||||||
|
|
||||||
const sessionKeyCookieName = `ISSSessionKey-${environmentData?.name}`;
|
const sessionKeyCookieName = `ISSSessionKey-${environmentData?.name}`;
|
||||||
|
|
@ -291,12 +283,12 @@ body {
|
||||||
const mainStore = existingStoreDataJSON ? JSON.parse(existingStoreDataJSON) : null;
|
const mainStore = existingStoreDataJSON ? JSON.parse(existingStoreDataJSON) : null;
|
||||||
const bailoutData = mainStore.applicationUser.pageData['bailout-page'];
|
const bailoutData = mainStore.applicationUser.pageData['bailout-page'];
|
||||||
|
|
||||||
console.log(`================ VUEX DATA`);
|
console.log(`================ STORE DATA`);
|
||||||
console.log(mainStore);
|
console.log(mainStore);
|
||||||
|
console.log(`================ PRIOR BAILOUT DATA`);
|
||||||
|
console.log(bailoutData);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
console.log(`================ PRIOR BAILOUT DATA`);
|
|
||||||
console.log(existingBailoutInfo);
|
|
||||||
console.log(`================ PRIOR HEADER DATA`);
|
console.log(`================ PRIOR HEADER DATA`);
|
||||||
console.log(existingHeaderInfo);
|
console.log(existingHeaderInfo);
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue