project-booster-vue 10.30.4 → 10.30.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1023,6 +1023,23 @@ export default defineComponent({
|
|
|
1023
1023
|
const host = window.location.host;
|
|
1024
1024
|
const appointmentUpdateUrl = decodeURI(this.appointment.appointmentUpdateUrl.String);
|
|
1025
1025
|
|
|
1026
|
+
// eslint-disable-next-line no-console
|
|
1027
|
+
console.log('- - - - - - - - - - - - - - - - - - - - - - - - - - - - -');
|
|
1028
|
+
// eslint-disable-next-line no-console
|
|
1029
|
+
console.log('this.appointment.appointmentUpdateUrl.String', this.appointment.appointmentUpdateUrl.String);
|
|
1030
|
+
// eslint-disable-next-line no-console
|
|
1031
|
+
console.log(
|
|
1032
|
+
'decodeURI(this.appointment.appointmentUpdateUrl.String)',
|
|
1033
|
+
decodeURI(this.appointment.appointmentUpdateUrl.String),
|
|
1034
|
+
);
|
|
1035
|
+
// eslint-disable-next-line no-console
|
|
1036
|
+
console.log(
|
|
1037
|
+
'decodeURIComponent(this.appointment.appointmentUpdateUrl.String)',
|
|
1038
|
+
decodeURIComponent(this.appointment.appointmentUpdateUrl.String),
|
|
1039
|
+
);
|
|
1040
|
+
// eslint-disable-next-line no-console
|
|
1041
|
+
console.log('- - - - - - - - - - - - - - - - - - - - - - - - - - - - -');
|
|
1042
|
+
|
|
1026
1043
|
return host.includes('localhost') || host.includes('uat') || host.includes('prep')
|
|
1027
1044
|
? `https://qa.timify.com/cancel-booking/${appointmentUpdateUrl}`
|
|
1028
1045
|
: `https://timify.com/cancel-booking/${appointmentUpdateUrl}`;
|