project-booster-vue 9.23.1 → 9.24.0

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.23.1",
3
+ "version": "9.24.0",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -136,7 +136,9 @@ export default defineComponent({
136
136
 
137
137
  async handleValidateClicked() {
138
138
  this.$emit('step-completed', {
139
- answers: [],
139
+ answers: this.payload.multiSelect.actions.VALIDATE.isAnswer
140
+ ? [this.payload.multiSelect.actions.VALIDATE.code]
141
+ : [],
140
142
  nextStep: this.payload.multiSelect.actions.VALIDATE.nextStep,
141
143
  });
142
144
  },
@@ -989,6 +989,8 @@
989
989
  "multiSelect": {
990
990
  "actions": {
991
991
  "VALIDATE": {
992
+ "isAnswer": true,
993
+ "code": "TAKE_APPOINTMENT",
992
994
  "label": "Continuer et prendre RDV",
993
995
  "nextStep": {
994
996
  "code": "APPOINTMENT_FORM"