project-booster-vue 10.30.2 → 10.30.4

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/README.md CHANGED
@@ -33,7 +33,6 @@ Team: project-booster@adeo.com
33
33
  - ~~Maxime Drecourt~~
34
34
  - ~~Yassine Bourakba~~
35
35
  - Anthony Pillot: anthony.pillot@ext.adeo.com
36
- - Samir Aliche: samir.aliche@ext.adeo.com
37
36
  - Adrien Déprez: adrien.deprez@ext.adeo.com
38
37
 
39
38
  ## Get started
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "10.30.2",
3
+ "version": "10.30.4",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -28,7 +28,7 @@ export default {
28
28
  </div>
29
29
  </template>
30
30
 
31
- <style lang="css" scoped>
31
+ <style lang="scss" scoped>
32
32
  .appointment-notification {
33
33
  gap: 1rem;
34
34
  display: flex;
@@ -1021,7 +1021,7 @@ export default defineComponent({
1021
1021
  }
1022
1022
 
1023
1023
  const host = window.location.host;
1024
- const appointmentUpdateUrl = decodeURIComponent(this.appointment.appointmentUpdateUrl.String);
1024
+ const appointmentUpdateUrl = decodeURI(this.appointment.appointmentUpdateUrl.String);
1025
1025
 
1026
1026
  return host.includes('localhost') || host.includes('uat') || host.includes('prep')
1027
1027
  ? `https://qa.timify.com/cancel-booking/${appointmentUpdateUrl}`