Merge pull request #1224 from Safelite/feature/jzimmerman/INSR-9648
INSR-9648: Fixing some formatting issues.
This commit is contained in:
commit
41204ca364
1 changed files with 7 additions and 15 deletions
|
|
@ -52,6 +52,7 @@ body {
|
|||
.diagnostic-info {
|
||||
color: #db0020;
|
||||
font-family: 'UrbanistSemiBold', Roboto, Arial, Helvetica, sans-serif;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
</style>
|
||||
<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.
|
||||
</p>
|
||||
</div>
|
||||
<!--
|
||||
<div class="cta">
|
||||
<a href="/">
|
||||
<button class="cta-button">
|
||||
Continue to Safelite.com
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
-->
|
||||
<div class="diagnostic-info" id="diagnostic-container">
|
||||
<hr />
|
||||
<h2 class="subheader">
|
||||
|
|
@ -145,7 +137,7 @@ body {
|
|||
return match;
|
||||
}
|
||||
|
||||
function getExperimentSettingsFromVuex(storeData) {
|
||||
function getExperimentSettingsFromStore(storeData) {
|
||||
const experiments = storeData?.applicationUser?.experiments;
|
||||
|
||||
if(experiments) {
|
||||
|
|
@ -224,7 +216,7 @@ body {
|
|||
// =============== Collect header data:
|
||||
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' });
|
||||
|
||||
const sessionKeyCookieName = `ISSSessionKey-${environmentData?.name}`;
|
||||
|
|
@ -291,12 +283,12 @@ body {
|
|||
const mainStore = existingStoreDataJSON ? JSON.parse(existingStoreDataJSON) : null;
|
||||
const bailoutData = mainStore.applicationUser.pageData['bailout-page'];
|
||||
|
||||
console.log(`================ VUEX DATA`);
|
||||
console.log(`================ STORE DATA`);
|
||||
console.log(mainStore);
|
||||
|
||||
/*
|
||||
console.log(`================ PRIOR BAILOUT DATA`);
|
||||
console.log(existingBailoutInfo);
|
||||
console.log(bailoutData);
|
||||
|
||||
/*
|
||||
console.log(`================ PRIOR HEADER DATA`);
|
||||
console.log(existingHeaderInfo);
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue