Auto stash before cherry pick of "Merge pull request #2599 from Safelite/feature/CASH-926-cart-updates-v1"
This commit is contained in:
parent
d892181356
commit
cfb916d3b6
2 changed files with 9 additions and 3 deletions
|
|
@ -543,8 +543,14 @@ export default {
|
|||
this.updateSupportingItems();
|
||||
|
||||
if (this.displayWaitList) {
|
||||
var gaLabel = "";
|
||||
const status = this.waitListRequested ? "checked" : "unchecked";
|
||||
let gaLabel = "";
|
||||
let status = this.waitListRequested ? "checked" : "unchecked";
|
||||
if (
|
||||
this.waitListRequested === null &&
|
||||
this.$store.state.order.customer.waitListRequested === true
|
||||
) {
|
||||
status = "checked";
|
||||
}
|
||||
const type = store.getters.isMobileAppointment ? "mobile" : "inshop";
|
||||
gaLabel = `${status}_${type}`;
|
||||
|
||||
|
|
|
|||
|
|
@ -133,4 +133,4 @@ caption,
|
|||
url("@/assets/fonts/Urbanist-BoldItalic.woff2") format("woff");
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue