Auto stash before cherry pick of "Merge pull request #2599 from Safelite/feature/CASH-926-cart-updates-v1"

This commit is contained in:
Scott Kiener 2025-07-14 09:36:43 -04:00
parent d892181356
commit cfb916d3b6
2 changed files with 9 additions and 3 deletions

View file

@ -543,8 +543,14 @@ export default {
this.updateSupportingItems(); this.updateSupportingItems();
if (this.displayWaitList) { if (this.displayWaitList) {
var gaLabel = ""; let gaLabel = "";
const status = this.waitListRequested ? "checked" : "unchecked"; 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"; const type = store.getters.isMobileAppointment ? "mobile" : "inshop";
gaLabel = `${status}_${type}`; gaLabel = `${status}_${type}`;