Sfoglia il codice sorgente

:construction: Small optimization in surveycompleteview logic

juan-filtering-match-pool
tomit4 2 anni fa
parent
commit
51a85f42a9
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      frontend/src/views/OnboardingView.vue

+ 1
- 1
frontend/src/views/OnboardingView.vue Vedi File

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

Loading…
Annulla
Salva