CASH-462 | Styling
This commit is contained in:
parent
77c007c444
commit
b90c3644d6
1 changed files with 3 additions and 3 deletions
|
|
@ -3265,7 +3265,7 @@ export const actions = {
|
||||||
// create a submitted order object from vuex.
|
// create a submitted order object from vuex.
|
||||||
const submittedState = {
|
const submittedState = {
|
||||||
order: context.state.order,
|
order: context.state.order,
|
||||||
applicationUser: context.state.applicationUser
|
applicationUser: context.state.applicationUser,
|
||||||
};
|
};
|
||||||
|
|
||||||
const experiments = context.state.applicationUser.experiments;
|
const experiments = context.state.applicationUser.experiments;
|
||||||
|
|
@ -3327,8 +3327,8 @@ export const actions = {
|
||||||
|
|
||||||
const submittedState = {
|
const submittedState = {
|
||||||
order: submittedOrder,
|
order: submittedOrder,
|
||||||
applicationUser: submittedApplicationUser
|
applicationUser: submittedApplicationUser,
|
||||||
}
|
};
|
||||||
// set to local storage
|
// set to local storage
|
||||||
window.sessionStorage.setItem("submittedState", JSON.stringify(submittedState));
|
window.sessionStorage.setItem("submittedState", JSON.stringify(submittedState));
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue