Update src/layouts/schedule-page/service-location/service-location.vue

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
katiekroell 2026-04-22 15:36:59 -04:00 committed by GitHub
parent afeb5635f5
commit bf59416cbd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -414,8 +414,11 @@ export default {
return useMainStore().order.serviceLocation.provider;
},
getCustomValueFromString(str) {
if (str === 'isRecalibrationOnOrder') {
switch (str) {
case 'isRecalibrationOnOrder':
return this.isRecalibrationOnOrder;
default:
return null;
}
},
async handleInShopZipUpdated(newZip) {