diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue
index 252741c1..b1fd6449 100644
--- a/src/layouts/service-location/service-location.vue
+++ b/src/layouts/service-location/service-location.vue
@@ -5,52 +5,45 @@
@submit="onSubmit"
@invalidSubmit="onInvalidSubmit">
-
@@ -164,8 +157,18 @@ export default {
}
return this.isGlassServiceableMobile;
},
+ isServiceableInshop() {
+ if (this.isRecalibrationServiceableInshop !== null) {
+ return this.isGlassServiceableInshop && this.isRecalibrationServiceableInshop;
+ }
+
+ return this.isGlassServiceableInshop;
+ },
displayMilitaryZipAlert() {
return this.zipContainsMilitaryBase && this.isServiceableMobile;
+ },
+ displayServiceableMobileOnly() {
+ return this.isServiceableMobile && !this.isServiceableInshop;
}
},
methods: {
@@ -214,18 +217,16 @@ export default {