Bladeren bron

:construction: Small optimization in surveycompleteview logic

tags/0.0.4
tomit4 2 jaren geleden
bovenliggende
commit
8e6c3f6625
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  1. 1
    1
      frontend/src/views/OnboardingView.vue

+ 1
- 1
frontend/src/views/OnboardingView.vue Bestand weergeven

55
         invalidResponse: false,
55
         invalidResponse: false,
56
     }),
56
     }),
57
     async created() {
57
     async created() {
58
+        // TODO: Troubleshoot bug where memberships are not returned from backend with 500 err
58
         // TODO: Troubleshoot bug where not all responses are returned at SurveyCompleteView
59
         // TODO: Troubleshoot bug where not all responses are returned at SurveyCompleteView
59
         console.log('currentProfile :=>', currentProfile)
60
         console.log('currentProfile :=>', currentProfile)
60
         this.survey = await surveyFactory.createSurvey()
61
         this.survey = await surveyFactory.createSurvey()
115
             })
116
             })
116
         },
117
         },
117
         async updateAnswers(payload) {
118
         async updateAnswers(payload) {
118
-            console.log('this.survey.steps :=>', this.survey.steps)
119
             if (payload) {
119
             if (payload) {
120
                 const k = payload.question.survey_stage
120
                 const k = payload.question.survey_stage
121
                 this.answered[k] = payload.input
121
                 this.answered[k] = payload.input

Laden…
Annuleren
Opslaan