project-booster-vue 9.63.8 → 9.63.9

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "9.63.8",
3
+ "version": "9.63.9",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -1069,7 +1069,10 @@ export default defineComponent({
1069
1069
  },
1070
1070
 
1071
1071
  appointmentNotificationLinkLabel() {
1072
- return this.readOnly || this.appointment.isPast || this.appointment.cancelled
1072
+ return this.readOnly ||
1073
+ this.appointment.isPast ||
1074
+ this.appointment.cancelled ||
1075
+ !['KITCHEN_IN_STORE', 'KITCHEN_REMOTE'].includes(this.appointment.appointmentType)
1073
1076
  ? ''
1074
1077
  : 'Ajoutez des plans aux mesures de votre pièce et des photos pour bien préparer le rendez-vous.';
1075
1078
  },